To what value do nonglobal variables default?
1) auto
2) register
3) static
Answer Posted / k.kavitha
1) Auto
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
What will the preprocessor do for a program?
using only #include
Is calloc better than malloc?
What is wrong with this declaration?
Is c still relevant?
What is the c language function prototype?
What is the use of the function in c?
What is d'n in c?
Why c is called top down?
Explain void pointer?
What is the difference between malloc calloc and realloc in c?
Why isnt any of this standardized in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Why is not a pointer null after calling free?
Which is best book for data structures in c?