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 do you mean by invalid pointer arithmetic?
how to find binary of number?
What does c mean?
What are pointers? What are stacks and queues?
What is the difference between array and pointer in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is malloc and calloc?
What is the difference between declaring a variable and defining a variable?
Why is C language being considered a middle level language?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Explain function?
What are the general description for loop statement and available loop types in c?
What are extern variables in c?
what are enumerations in C
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.