what are the stoge class in C and tel the scope and life time
of it?
Answer Posted / anudeep gongadi
1.automatic: the scope is within the function
2.extern: if variable is declared with extern, then that
variable is there in another program.and it can be used in
current program.
3.static: they are initialised only once.
4.register: limited memory is reserved for registers.
for faster access off data and computations, we mae use of
registers.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
cavium networks written test pattern ..
Is main is a keyword in c?
Is c pass by value or reference?
Explain what does a function declared as pascal do differently?
What is 02d in c?
write a progrmm in c language take user interface generate table using for loop?
What are pointers? What are different types of pointers?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is data structure in c language?
Explain modulus operator.
Explain enumerated types.
What is the use of ?
What is static and auto variables in c?
Explain what is wrong with this program statement?
Is struct oop?