Which of the following about automatic variables within a
function is correct ?
a.its type must be declared before using the variable
b.they are local
c.they are not initialised to zero
d.they are global.
Answer Posted / sundeep
They are local.
| Is This Answer Correct ? | 28 Yes | 5 No |
Post New Answer View All Answers
Is c compiled or interpreted?
What are called c variables?
How can I write a function analogous to scanf?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why static variable is used in c?
Why c is called procedure oriented language?
Are there namespaces in c?
Are the variables argc and argv are always local to main?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What are # preprocessor operator in c?
How can you allocate arrays or structures bigger than 64K?
What is c basic?
What is difference between structure and union in c?
What is the right type to use for boolean values in c? Is there a standard type?