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 / subbu
options a,b,c are correct
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
What will the preprocessor do for a program?
What does 2n 4c mean?
What does the function toupper() do?
Can you mix old-style and new-style function syntax?
largest Of three Number using without if condition?
What does it mean when the linker says that _end is undefined?
What is ambagious result in C? explain with an example.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Write a program to generate random numbers in c?
Do you have any idea how to compare array with pointer in c?
Which is the best website to learn c programming?
Write a C program to count the number of email on text
What is a macro in c preprocessor?
What is the purpose of type declarations?
How can I write a function that takes a format string and a variable number of arguments?