C Storage Classes

C Storage Classes

Storage class determins the variables storage location, scope and lifetime.

Storage locations could be memory or CPU registers.

Variable Scope is the visibility level of the variable like local or global etc..

lifetime of variable means duration between creation and destruction of variable.

Different C storage classes

auto

register

extern

static

C Storage class syntax

<storage-class> <data-type> <variable-name>;

C Auto Storage Class

Automatic storage class takes default storage class are local to function or block.

default storage class is the automatic storage class for the variables defined inside function or block.

auto storage class variables scope is local to function or block and destroyed when exit of the function or block.

#include<stdio.h>                                                             
                                                                                
void main()                                                                     
{                                                                               
 auto int num = 10;                                                             
 {                                                                              
   auto int num = 15;                                                           
   {                                                                            
     printf("\nnum: %d", num);                                                  
   }                                                                            
   printf("\nnum: %d", num);                                                    
 }                                                                              
 printf("\nnum:%d",num);                                                        
}         

Output:

$ cc storage_class.c 
$ ./a.out 

num: 15
num: 15
num:10
#include<stdio.h>                                                              
                                                                                
void main()                                                                     
{                                                                               
 auto int num = 10;                                                             
 {                                                                              
   auto int num = 15;                                                           
   {                                                                            
     int num = 25;                                                              
     printf("\nnum: %d", num);                                                  
   }                                                                            
   printf("\nnum: %d", num);                                                    
 }                                                                              
 printf("\nnum:%d",num);                                                        
}   

Output:

$ cc storage_class.c 
$ ./a.out 

num: 25
num: 15
num:10

C register storage class

C register storage class is similer like auto storage class but difference is value of the variable will be stored in CPU registers.

register storage class is used for the variables which are accessed frequently in the c program which avoids swapping time to relocate variable value from memory to CPU registers.

Compilation error will be raised if we use pointer with register storage class

#include<stdio.h>                                                              
                                                                                
void main()                                                                     
{                                                                               
 register int num = 10;                                                         
 {                                                                              
   register int num = 15;                                                       
   {                                                                            
     int num = 25;                                                              
     printf("\nnum: %d", num);                                                  
   }                                                                            
   printf("\nnum: %d", num);                                                    
 }                                                                              
 printf("\nnum:%d",num);                                                        
}   

Output:

$ cc storage_class.c 
$ ./a.out 

num: 25
num: 15
num:10

c static storage class

Stotic variables can be local to function, block or file and not like global variables visible to outside function or file.

C compiler creates permanent storage for static storage class variables remains visible local to the function or block or file.

#include<stdio.h>                                                              
                                                                                
static int num = 5;                                                             
void main()                                                                     
{                                                                               
   int i=0;                                                                     
   for(i=0;i<3;i++)                                                             
   {                                                                            
     static int num = 15;                                                       
     {                                                                          
       printf("\nblock- num: %d", num);                                         
       num ++;                                                                  
     }                                                                          
   }                                                                            
   printf("\nglobal- num: %d", num);                                            
   num++;                                                                       
   printf("\nglobal- num: %d", num);                                            
}

Output:

$ cc storage_class.c 
$ ./a.out 

block- num: 15
block- num: 16
block- num: 17
global- num: 5
global- num: 6

c extern storage class

external storage class is used to link the variables which are declared else where in the program.

It Provides external linkage to the variables.

Variable initialization is not allowed with extern storage specifier.

When we use extern specifier, no storage is allocated and also assumed that variable is already declared else where in the program

#include<stdio.h>                                                            
                                                                                
extern int num;                                                                 
void main()                                                                     
{                                                                               
 int i = 10;                                                                    
 {                                                                              
   printf("\nnum:%d", num);                                                     
 }                                                                              
 printf("\nnum:%d",num);                                                        
}                                                                               
                                                                                
int num =25;                                                                         

Output:

$ cc storage_class.c 
$ ./a.out 

num: 25
num: 25

C Program Examples

C program to cmpute matrix addition using two dimensional array

C program to cmpute matrix subtraction using two dimensional array

C program to cmpute matrix multiplication using two dimensional array

C program to compute different order of matrix multiplication

C program to generate identity matrix for required rows and columns

C program to validate whether matrix is identity matrix or not

C program to validate whether matrix is sparse matrix or not

C program to validate whether matrix is dense matrix or not

C program to generate string as matrix diagonal characters using two dimesional array

C Program to find number of weeks, months and years from days

C Program To Implement Linked List and Operations

C Program To Implement Sorted Linked List and Operations

C Program to Reverse the Linked List

C Program to Stack and Operations using Linked List

C Program to Queue and Operations using Linked List

C Program to calculate multiplication of two numbers using pointers

C Program To Calculate Median

C Program To Calculate Standard Deviation

C Program For Fahrenheit To Celsius Conversion

C Program To Calculate Average

C Program For Quadratic Equations

C Program To Check Character Type

C Program To Find Largest Of Three Values

C Program To Find Max Value In Array

C Program to Find Min Value In Array

C Program to Print Multiplication Table

C Program for Frequency Counting

C Program to read a line of text

C Program To Find ASCII Value For Any Character

C Program To Find A Character Is Number, Alphabet, Operator, or Special Character

C Program To Find Reverse Case For Any Alphhabet using ctype functions

C Program To Find Number Of Vowels In Input String

C Program Pointers Example Code

C Program To Find Leap Year Or Not

C Program To Swap Two Integers Using Call By Reference

C Program To Swap Two Integers Without Using Third Variable

C Program To List Prime Numbers Upto Limit

C Program To List Composite Numbers Upto Limit

C Program To Calculate Compound Interest

C Program To Calculate Depreciation Amount After of Before Few Years

C Program To Calculate Profit Percentage

C Program To Calculate Loss Percentage

C Program To Find String Is Polindrome Or Not

C Program To Find Factorial of a Number

C Program To Check Number is a Polindrome or Not

C Program To Generate Random Integers

C Program To Generate Random Float Numbers

C Program to find Square Root of a Number

C Program to find Area of a Rectangle

C Program to find Perimeter of a Rectangle

C Program to find Area of a Square

C Program to find Area of a Triangle

C Program to find Area of a Parallelogram

C Program to find Area of a Rhombus

C Program to find Area of a Trapezium

C Program to find Area of a Circle and Semi-circle

C Program to find Circumference of a Circle and Semi-circle

C Program to find length of an arc

C Program to find Area of a Sector

C Program to find string length for list of strings

C Program to find the character at index in a string

C Program to compare characters

C Program to find eligible to vote or not

C Program to get system current date and time on linux

C Program to get positive number

C Program to implement calculator

C Program to implement banking system

C Program to find sum of number

C Program for array traversal using pointers

C Program for array traversal in reverse order using pointers

C Program to find particular element occurrences count in array

C Program to find even elements occurrences count in array

C Program to find odd elements occurrences count in array

C program to find week day in word from week day in number using two dimentsional array

C program to find month in word from month in number using pointers

C program to compute PMT for a loan

C program to compute EMI and round up using floor

C program to compute EMI and round up using ceil

C program to compute the EMI table with Interest, Principal and Balance

C program to get multiple line of string

C program to find nth element in array using pointers

C program to compute the volume of a cube

C program to compute the volume of a box

C program to compute the volume of a sphere

C program to compute the volume of a triangular prism

C program to compute the volume of a cylinder

C Program to Compute Perimeter of Square

C Program to compute the perimeter of triangle

C Program to compute the discount rate

C Program to compute the sales tax

C program to add, delete, search a record or show all using binary file

C program to add, delete, search a record or show all using text file

Privacy Policy  |  Copyrightcopyright symbol2020 - All Rights Reserved.  |  Contact us   |  Report website issues in Github   |  Facebook page   |  Google+ page

Email Facebook Google LinkedIn Twitter
^