The variable which is initialized whenever compile module is compiled1.extern2.static3.auto4.public

Questions by rajsekhar

Showing Answers 1 - 4 of 4 Answers

the answer is static

static :a static a local to the functions maintests and compile modules in which it is declared.

therefore Auto , Static ,Public ,Extern are the variable declarations

thankyou......

koti

  Was this answer useful?  Yes

sudhakar2068

  • Nov 8th, 2006
 

Extern: A  extern declaration indicates a reference to a public variable declared outside of the current test or module.

Static: A static variable is local to the function test.

Auto:An auto variable can be declared only with in a function and is local to that function. It exists only for as long as the function is running.A new Copy of the variable is Created each time the function is called.

Public: A  Public variable can  be  declared only  with in the test or module and is available for functions, tests, and compiled modules.

sudhakar kolla,

My email:kollasudhakar2005@yahoo.co.in.

My number:09819859346

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions