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 / rajan singh
b. is right answer
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What are header files and what are its uses in C programming?
Where are c variables stored in memory?
which type of aspect you want from the student.
What is the role of this pointer?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is the purpose of main( ) in c language?
Are comments included during the compilation stage and placed in the EXE file as well?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is the difference between volatile and const volatile?
Which is better oop or procedural?
Why we write conio h in c?
What is structure padding in c?
What is the difference between c and python?
What is a pointer value and address in c?