Define the scope of static variables.


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

Post New Answer

More C Interview Questions

Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


When should you use a type cast?

0 Answers  


What is key word in c language?

4 Answers   ABC,


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


1,4,8,13,21,30,36,45,54,63,73,?,?.

10 Answers   AMB, Franklin Templeton,






#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


Why header file is used in c?

0 Answers  


Explain can you assign a different address to an array tag?

0 Answers  


What is volatile keyword in c?

0 Answers  


What is the relationship between pointers and data structure?

0 Answers  


what is the maximum no. of bytes calloc can allocate

4 Answers   Mphasis,


Why does this code crash?

0 Answers  


Categories