To what value do nonglobal variables default?
1) auto
2) register
3) static
Answers were Sorted based on User's Feedback
Answer / anilkumar927@gmail.com
static
explation:
all non global variables are act as static
all local variables are act as auto
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain what is the benefit of using an enum rather than a #define constant?
State the difference between realloc and free.
What is main function in c?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Is int a keyword in c?
What are the types of arrays in c?
What is local and global variable in c?
What is the main differences between C and Embedded C?
Which is best book for data structures in c?
Is fortran faster than c?
What is a C array and illustrate the how is it different from a list.
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?