What are Storage Classes in C ?
Answer Posted / ramiz n sayyed
if we declare any variable its type and storage class is
also be declare.storage class tells us that
1.where the variable is stored.
2.what is its initial value.
3.what is the scope of the variable.
4.and last is what is the life of the variable.
THERE ARE FOUR TYPES OF STORAGE CLASS IN C-
1.AUTOMATIC STORAGE CLASS
2.REGISTER STORAGE CLASS
3.STATIC STORAGE CLASS
4.EXTERNAL STORAGE CLASS
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is the use of in c?
What are local static variables? How can you use them?
What is data type long in c?
What is the purpose of macro in C language?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What are Macros? What are its advantages and disadvantages?
What is the easiest sorting method to use?
Why is c still so popular?
What is typedef example?
How many identifiers are there in c?
Is c# a good language?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Why c is faster than c++?
while initialization of array why we use a[][2] why not a[2][]...?
What is main return c?