What are Storage Classes in C ?

Answer Posted / vagish

storage class contains five types of storage class in c .
I. Extern
II. Static
III. Register
IV. Auto
V. typedef
I. Auto - This is the default storage class. Auto can only
be used with in functions. i.e. only for local variables,
not for globals.
II. Register - The variables declared using the register
storage class may stored in cpu registers instead of RAM.
Since it doesn't have a memory location, the '&' operator
for getting the address of the variable cannot be applied
(in C). This storage class cannot be used for global scope
data.
III. Static - This is the default storage class for global
variables. In case of local variable, it is initialized at
compile time and retains its value between the calls. By
default the static variables will be initialized to zero,
incase of pointer variable initialized to NULL.
IV. Extern - Defines the global variables that is visible to
all object modules. This type of variables cannot be
initialized, since it is pointing to a storage location,
where it is previously define.
V. Typedef- A typedef declaration lets you define your own
identifiers that can be used in place of type specifiers
such as int, float, and double. A typedef declaration does
not reserve storage. The names you define using typedef are
not new data types, but synonyms for the data types or
combinations of data types they represent.

Is This Answer Correct ?    23 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Stimulate calculator using Switch-case-default statement for two numbers

2452


Was 2000 a leap year?

635


Process by which one bit pattern in to another by bit wise operation is?

617


How can I pad a string to a known length?

614


What is gets() function?

675






Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

606


What are pointers really good for, anyway?

621


What are the 4 types of unions?

613


What are the different types of endless loops?

626


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

635


How can I find out if there are characters available for reading?

649


What is scope of variable in c?

573


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

580


Explain how can I write functions that take a variable number of arguments?

619


Write the syntax and purpose of a switch statement in C.

631