What are Storage Classes in C ?
Answer Posted / bhagwan singh mer
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 ? | 14 Yes | 8 No |
Post New Answer View All Answers
What does the format %10.2 mean when included in a printf statement?
What is property type c?
Is c weakly typed?
What is difference between array and pointer in c?
Write a program to print “hello world” without using semicolon?
provide an example of the Group by clause, when would you use this clause
How to write a code for reverse of string without using string functions?
Explain the difference between null pointer and void pointer.
What is hash table in c?
Why does not c have an exponentiation operator?
largest Of three Number using without if condition?
Linked lists -- can you tell me how to check whether a linked list is circular?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is function and its example?
How can I find the modification date and time of a file?