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 extern c used for?
How can I change their mode to binary?
Is it possible to initialize a variable at the time it was declared?
What is the correct declaration of main?
What are the differences between new and malloc in C?
What are unions in c?
Why is a semicolon (;) put at the end of every program statement?
Is c object oriented?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Why is not a pointer null after calling free?
How can I find out the size of a file, prior to reading it in?
List the different types of c tokens?
Which built-in library function can be used to match a patter from the string?
Explain what is page thrashing?
What is f'n in math?