What does static variable mean in c?


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

Post New Answer

More C Interview Questions

What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


What language is c written?

0 Answers  


How can you find out how much memory is available?

0 Answers  


Difference between MAC vs. IP Addressing

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  






What is the difference between c &c++?

0 Answers  


Is int a keyword in c?

0 Answers  


Give a method to count the number of ones in a 32 bit number?

4 Answers  


Why is c called c not d or e?

0 Answers  


What is the use of sizeof () in c?

0 Answers  


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

0 Answers   Infosys,


What is an lvalue?

0 Answers  


Categories