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
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is a scope resolution operator in c?
Can you think of a logic behind the game minesweeper.
What is switch in c?
Can a variable be both static and volatile in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
When c language was developed?
Is malloc memset faster than calloc?
What is null in c?
Explain can you assign a different address to an array tag?
Write a program to print all permutations of a given string.
Difference between strcpy() and memcpy() function?
Why do we use header files in c?
How can you avoid including a header more than once?
How does struct work in c?