What are Storage Classes in C ?
Answer Posted / thomas
Basically, storage classes in c are there to define the
storage & scope of the various sorts of variables.
we r having following 4 storage classes in C.
01.auto
02.register
03.extern
04.static
In this auto & register has local scope releted to block &
extern & static has global scope to main program.
| Is This Answer Correct ? | 129 Yes | 21 No |
Post New Answer View All Answers
What is c basic?
What is the difference between c &c++?
Explain how can you restore a redirected standard stream?
How can I send mail from within a c program?
Difference between Function to pointer and pointer to function
difference between native and cross compilers
What is the significance of scope resolution operator?
Why isn't it being handled properly?
What is the difference between a function and a method in c?
number of times a digit is present in a number
What is the heap in c?
What is a floating point in c?
Explain what happens if you free a pointer twice?
What is structure and union in c?
What is bss in c?