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 |
What does the file stdio.h contain?
what are non standard function in c
Explain what is page thrashing?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
write a program to generate address labels using structures?
Which sorting algorithm is the best?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
post new interiew question and aptitude test papers
why we are using float in C
Juxtapose the use of override with new. What is shadowing?