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
Is c++ based on c?
Explain what is wrong with this statement? Myname = ?robin?;
Do you know the use of fflush() function?
Write a program which returns the first non repetitive character in the string?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is ctrl c called?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
plz let me know how to become a telecom protocol tester. thank you.
Is c is a high level language?
What is the difference between array and linked list in c?
When can a far pointer be used?
What does 2n 4c mean?
Write a program to print “hello world” without using semicolon?
what are non standard function in c
Why does this code crash?