Storage Classes in C

Categories: C language

Storage classes in C are used to determine the lifetime, visibility, memory location, and initial value of a variable. There are four types of storage classes in C

1. Automatic

2. External

3. Static

4. Register


Storage ClassesStorage PlaceDefault ValueScopeLifetime

autoRAMGarbage ValueLocalWithin function

externRAMZeroGlobalTill the end of the main program Maybe declared anywhere in the program

staticRAMZeroLocalTill the end of the main program, Retains value between multiple functions call

registerRegisterGarbage ValueLocalWithin the function


Automatic

1. Automatic variables are allocated memory automatically at runtime.

2. The visibility of the automatic variables is limited to the block in which they are defined.

3. The scope of the automatic variables is limited to the block in which they are defined.

4. The automatic variables are initialized to garbage by default.

5. The memory assigned to automatic variables gets freed upon exiting from the block.

6. The keyword used for defining automatic variables is auto.

7. Every local variable is automatic in C by default.


Example 1

#include <stdio.h>  

int main()  

{  

int a; //auto  

char b;  

float c;   

printf("%d %c %f",a,b,c); // printing initial default value of automatic variables a, b, and c.   

return 0;  

}  

Output:

garbage garbage garbage 


Static

1. The variables defined as static specifier can hold their value between the multiple function calls.

2. Static local variables are visible only to the function or the block in which they are defined.

3. A same static variable can be declared many times but can be assigned at only one time.

4. Default initial value of the static integral variable is 0 otherwise null.

5. The visibility of the static global variable is limited to the file in which it has declared.

6. The keyword used to define static variable is static.


Register

1. The variables defined as the register is allocated the memory into the CPU registers depending upon the size of the memory remaining in the CPU.

2. We can not dereference the register variables, i.e., we can not use &operator for the register variable.

3. The access time of the register variables is faster than the automatic variables.

4. The initial default value of the register local variables is 0.

5. The register keyword is used for the variable which should be stored in the CPU register. However, it is compiler?s choice whether or not; the variables can be stored in the register.

6. We can store pointers into the register, i.e., a register can store the address of a variable.

7. Static variables can not be stored into the register since we can not use more than one storage specifier for the same variable.


Example 1

#include <stdio.h>  

int main()  

{  

register int a; // variable a is allocated memory in the CPU register. The initial default value of a is 0.   

printf("%d",a);  

}  

Output:


0

External

1. The external storage class is used to tell the compiler that the variable defined as extern is declared with an external linkage elsewhere in the program.

2. The variables declared as extern are not allocated any memory. It is only declaration and intended to specify that the variable is declared elsewhere in the program.

3. The default initial value of external integral type is 0 otherwise null.

4. We can only initialize the extern variable globally, i.e., we can not initialize the external variable within any block or method.

5. An external variable can be declared many times but can be initialized at only once.

6. If a variable is declared as external then the compiler searches for that variable to be initialized somewhere in the program which may be extern or static. If it is not, then the compiler will show an error.


Example 1

#include <stdio.h>  

int main()  

{  

extern int a;   

printf("%d",a);  

}  

Output

main.c:(.text+0x6): undefined reference to `a'

collect2: error: ld returned 1 exit status

Top Blogs
C Language Interview Question and Answers Published at:- Benefits of C language over other programming languages Published at:- History of C Language : Introduction to C Programming Language Published at:- How does C Programming Language Work Published at:- Importance of C Programming Language Published at:- C Character Set Published at:- Input and Output Functions in C Published at:- Introduction to Implementation of Queue using Linked List Published at:- Definition of C Language Published at:- History of C Language Published at:- Features of C Language Published at:- How to install C Language Published at:- Compilation process in c Published at:- printf() and scanf() in C Published at:- Variables in C Language Published at:- Types of Variables in C Language Published at:- Data Types in C Published at:- C Identifiers Published at:- C Operators in c Language Published at:- C Format Specifier in C Language Published at:- Escape Sequence in C Published at:- What is ASCII code? Published at:- Constants in C Published at:- Tokens in C language Published at:- Operators in C Language Published at:- C Boolean in C language Published at:- Boolean with Logical Operators in C language Published at:- Static in C Language Published at:- Difference in C language Term Published at:- Programming Errors in C Language Published at:- Compile time vs Runtime In C language Published at:- Differences Between Compile-Time and Runtime In C Language Published at:- Conditional Operator in C Language Published at:- Meaning of Bitwise Operator in C Language Published at:- What is the 2s complement in C Published at:- The C Language in the C Control Statement Published at:- C Switch Statement In C Language Published at:- Difference Between if-else and switch Published at:- C Loops of C Language Published at:- do while loop in C Published at:- while loop in C Language Published at:- Properties of while loop in C Language Published at:- for loop in C Language Published at:- Nested Loops in C Language Published at:- Nested Loops in C Language Published at:- C break statement in C Language Published at:- C continue statement in C Language Published at:- C goto statement in C Language Published at:- C Functions Published at:- Types of Functions in C Language Published at:- Call by value and Call by reference in C Language Published at:- Recursion in C Language Published at:- Recursive Function In C Language Published at:- Storage Classes in C Published at:- C Array in C Language Published at:- Two Dimensional Array in C Language Published at:- What is an Array in C Language Published at:- Passing Array to Function in C Published at:- C Pointers in C Language Published at:- C Double Pointer (Pointer to Pointer) Published at:- Pointer Arithmetic in C Language Published at:- C Double Pointer (Pointer to Pointer) in C Language Published at:- Pointer Arithmetic in C Language Published at:- Pointer to function in C Language Published at:- Dangling Pointers in C Language Published at:- sizeof() operator in C Language Published at:- const Pointer in C Language Published at:- Pointer to Constant In C Language Published at:- void pointer in C Language Published at:- Advantages of void pointer in C Language Published at:- C dereference pointer in C Language Published at:- What is a Null Pointer in C Language Published at:- C Function Pointer in C Language Published at:- Function pointer as argument in C Language Published at:- Dynamic memory allocation in C Language Published at:- C Strings In C Language Published at:- Traversing String in C Language Published at:- Accepting string as the input in C Language Published at:- Pointers with strings in C Language Published at:- C gets() and puts() functions in C Language Published at:- C String Functions in C Language Published at:- C Math in C Language Published at:- C Structure in C Language Published at:- What is Structure in C Language Published at:- typedef in C Language Published at:- C Array of Structures Published at:- Nested Structure in C Language Published at:- Types of Nested Structure in C Language Published at:- Passing structure to function in C Language Published at:- Structure Padding in C Language Published at:- Why structure padding in C Language Published at:- Changing order of the variables In C Language Published at:- Union in C Language Published at:- Deciding the size of the union in C Language Published at:- File Handling in C Language Published at:- C fprintf() and fscanf() in C Language Published at:- C fputc() and fgetc() in C Language Published at:- C fputs() and fgets() in C Language Published at:- C fseek() function in C Language Published at:- C rewind() function in Language Published at:- C ftell() function in C Language Published at:- C Preprocessor Directives in C Language Published at:- C Predefined Macros in C Language Published at:- C #include in C Language Published at:- C #define in C Language Published at:- C #undef in C Language Published at:- C #ifdef in C Language Published at:- C #ifndef in C Language Published at:- C #if in C Language Published at:- C #else in C Language Published at:- C #error in C Language Published at:- C #pragma in C Language Published at:- Command Line Arguments in C Language Published at:- C Expressions in C Language Published at:- Inception Of C Language Tutorial for Beginners Published at:- The C Compiler work in C language and its important Published at:- Program Structure with “Hello World” Example Published at:- Data Segments in C Language Published at:- Flow of C Program in C Language Published at:- What is a programming language in C Language Published at:- Differences between Machine-Level language and Assembly language Published at:- Differences between Low-Level language and High-Level language Published at:- Enum in C Language Published at:- What is getch() in C Language Published at:- What is the function call in C Language Published at:- Function Calling in C Language Published at:- Difference between typedef and define in C Published at:- Use of typedef keyword in Structure C Language Published at:- Program in C Language with Practical Published at:- Difference between the typedef and the #define in C Published at:-
R4R.co.in Team
The content on R4R is created by expert teams.