To what value do nonglobal variables default?
1) auto
2) register
3) static
Answer Posted / shruti
Non global variables = local variables..
all non global variables default auto..
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain the concept and use of type void.
Explain data types & how many data types supported by c?
Do you know the difference between exit() and _exit() function in c?
What are called c variables?
Can we change the value of constant variable in c?
Explain how can you restore a redirected standard stream?
What should malloc(0) do?
Why do we need volatile in c?
How do I send escape sequences to control a terminal or other device?
Explain what is output redirection?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What does & mean in scanf?
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);
How can you allocate arrays or structures bigger than 64K?