To what value do nonglobal variables default?
1) auto
2) register
3) static
Answer Posted / srinivas
static
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is malloc() function?
Explain goto?
Why static variable is used in c?
Explain the use of fflush() function?
How many data structures are there in c?
Why isnt any of this standardized in c?
What is break statement?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
What are the different types of endless loops?
What are the properties of union in c?
What is function what are the types of function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is identifier in c?
What is typedef struct in c?