What are Storage Classes in C ?
Answer Posted / sagar kolte & shakti panch
storage class is nothing but diffrent location laocation in
memroy::::
Storage class tells us:
1) Where the variable is stored.
2) Initial value of the variable.
3) Scope of the variable.Scope specifies the part of the
program which a variable is accessed.
4) Life of the variable.
there are 4 class
1) register -> (all the cpu reg)
2) auto -> scope is local to function perticular function
3) extern-> all global variables by default they are global
4) static ->Variable is stored in memory.
Default value is zero.
Scope is local to the block.
Life is,value of the variable persists between different
function calls.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are the __date__ and __time__ preprocessor commands?
What are the advantages of using Unions?
What is character set?
Is c still used?
Why main is used in c?
What is #line in c?
Is it better to bitshift a value than to multiply by 2?
What is preprocessor with example?
What are pragmas and what are they good for?
What is difference between class and structure?
What is variable initialization and why is it important?
What is the c value paradox and how is it explained?
What does sizeof return c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Tell me can the size of an array be declared at runtime?