CoolInterview.com - World's Largest Collection of Interview Questions
Send Free SMS
 Interview Questions  
 Our Services  


INTERVIEW QUESTIONS LANGUAGES C++ DETAILS
Question :
what are auto static variables and auto extern variables?


Category C++ Interview Questions
Rating (4.0) By 1 users
Added on 7/19/2006
Views 1775
Rate it!
Answers:

In theory these are called storage classes. These will define the scope and life time of variables or functions.

There are mainly 4 of them:

auto is the default storage class for local variables.

register is used to define local variables that should be stored in a register instead of RAM. This means that the variable has a maximum size equal to the register size say a word.

static can also be defined within a function or as a global variable. If this is done, the variable is initalised at compilation time and retains its value between calls ie, inside the function. Because it is initialsed at compilation time, the initalistation value must be a constant. This is serious stuff - tread with care.

extern defines a variable as global one ie, that is visable to all files irrespective of where it is defined. When you use 'extern' the variable cannot be initalized as all it does is point the variable name at a storage location that has been previously defined.



A static variable in a function is not instantiated at compile time. Rather, it is done when the first call to that function is made. Thereafter, its value can change but it will persist between calls to that function.



 Posted by: Akshay    

Contact Akshay  Contact Akshay


If you have the better answer, then send it to us. We will display your answer after the approval.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification  Enter the above shown code:*
Inform me about updated answers to this question

   
Related Questions
View Answer
How can we define a dynamic memory allocation in UNIX operating system?

View Answer
What is the difference between macro and inline()?

View Answer
Can main() be overridden?

View Answer
Why always array starts with index 0?

View Answer
what is the difference betwen wait() and delay()?

View Answer
What will be output of the following code
#include
using namespace std;
class abc
{
public :
void main()
{
cout<<" Its main function "< }
};
int main(int c, char **v)
{
abc a;
if(c<1)
{
cout<<" Error can not accept it "< exit(1);
}
cout<<" its in main program "< a.main();

return 0;
}


View Answer
How is static variable stored in the memory?
( if there are 2 functions in a file,and the static variable name is same (ex var) in both the function. how is it keep seperately in the memory).

View Answer
Can we take "main function" as of type float,char etc?

View Answer
What is function overriding?

View Answer
What is the difference between Object and Instance?

View Answer

Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

Notify me when better answer is posted!
Email:

View ALL C++ Interview Questions

User Options
Sponsored Links


Copyright ©2003-2010 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions
Page URL: http://www.coolinterview.com/interview/6097/default.asp?cachecommand=bypass


Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial | Web Hosting | Free SMS | Dedicated Servers | Joke of the Day

0.66