What are Storage Classes in C ?
Answer Posted / sanya
stroge refes to the scope of the variable and memory
allocatin by the compiler to store the varibl. scope of a
variable is the boundary within which a variable can be
used store class defines the scope and lifetime of variable.
from the point of c compiler,a variable name identifies
physical loction from from a computer where variable is
stored. there are to memory location in a computer system
where variable are stored as memory and cpu register
there are four type
1.automatic
2.register
3.static
4.external
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is scope rule in c?
What does void main return?
What does node * mean?
Which driver is a pure java driver
What is %g in c?
Explain what are multibyte characters?
Explain how can I remove the trailing spaces from a string?
How can I call a function with an argument list built up at run time?
What is substring in c?
If the size of int data type is two bytes, what is the range of signed int data type?
How can I find out the size of a file, prior to reading it in?
Differentiate Source Codes from Object Codes
Is exit(status) truly equivalent to returning the same status from main?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is pointer in c?