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
What is the right type to use for boolean values in c?
Why array is used in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Can i use “int” data type to store the value 32768? Why?
Process by which one bit pattern in to another by bit wise operation is?
in iso what are the common technological language?
What is the difference between exit() and _exit() function in c?
Why is c called c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Suggesting that there can be 62 seconds in a minute?
Differentiate between calloc and malloc.
What are the 4 types of functions?
What is the benefit of using an enum rather than a #define constant?
What do you know about the use of bit field?
Why do we use namespace feature?