What are 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

How do I send escape sequences to control a terminal or other device?

0 Answers  


what are the interview question's in the language c

2 Answers   Nipuna,


What is pointers in c with example?

0 Answers  


What is the difference between ‘g’ and “g” in C?

1 Answers  


Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}

11 Answers   IBM, TCS,






What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?

1 Answers   Excel,


explain what is an endless loop?

0 Answers  


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


How can I sort more data than will fit in memory?

0 Answers  


provide an example of the Group by clause, when would you use this clause

0 Answers  


Can a function argument have default value?

0 Answers   Genpact,


Categories