Where static variables are stored in memory in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How can you return multiple values from a function?

0 Answers  


What does int main () mean?

0 Answers  


Is double link list a linear data structure? If Yes, Why?If No, Why?

4 Answers  


#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?

6 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,






What are pointers? Why are they used?

0 Answers  


What is the difference between array_name and &array_name?

0 Answers  


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

0 Answers  


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

0 Answers  


number of times a digit is present in a number

0 Answers  


What is the memory allocated by the following definition ? int (*x)();

2 Answers   ADITI,


What is meant by recursion?

0 Answers   ADP,


Categories