×

Storage Classes in C

Storage Classes in C

Storage Classes are used to define the variable and function property. These functionalities include basically the scope, accessibility, and lifetime that help us detect the existence of a particular variable during a program's runtime.

  • auto
  • register
  • static
  • extern

The auto Storage Class

For all local variables, the auto storage class is the default storage class.

{
…………
…………
   auto int gender;
}

The example above differentiates two variables in the same storage class.

Only functions, i.e., local variables, can be used in 'auto'

The static Storage Class

The static storage class instructs the compiler to retain a local variable in existence throughout the program's lifespan, instead of generating it and deleting it as it comes in and goes out of control. Hence, the stratification of local variables helps maintain their values between function calls.

Also, the static modifier may be applied to global variables. When this is achieved, it causes the scope of that variable to be limited to the file that declares it to be in.

The register Storage Class

This class of storage declares registry variables that have the same functionality like the auto variables. The only difference is that if a free register is available, the compiler tries to store those variables in the microprocessor's register. It makes use of registry variables much faster than those stored in the memory during the initialization of the program. If there is no free register available, these are stored only in the memory. Generally, several variables are defined with the register keyword, which helps in increasing the system runtime to be obtained within a program. An important and interesting point to note here is that we cannot use the pointers to retrieve the address of a registry variable.

register int  token;

In C programming language, when static has been used on a global variable, it allows all members of its class to share only one copy of that item.

#include <stdio.h>
/* function declaration */
void function(void);
static int count = 10; /* global variable */
main() {
   while(count--) {
      function();
   }
   return 0;
}
/* function definition */
void function( void ) {
   static int k = 10; /* local static variable */
   k++;
   printf("k is %d and count is %d\n", k, count);
}

Output:

Storage Classes in C

The extern Storage Class

The extern storage class is used to provide a comparison of a global variable that is accessible to ALL the files in the program. However, when you use 'external,' the variable cannot be initialized; it points the name of the variable to a predefined storage location.

Example:

#include <stdio.h>
int x;
void autoStorageClass()
{
    printf("\nDemonstrating auto class\n\n");
    // declaring an auto variable (simply
    // writing "int k=30;" works as well)
    auto int k = 30;
    // printing the auto variable 'a'
    printf("Value of the variable 'k'"
           " declared as auto: %d\n",
           k);
    printf("--------------------------------");
}
void registerStorageClass()
{
    printf("\nDemonstrating register class\n\n");
    // declaring a register variable
    register char b = 'G';
    // printing the register variable 'b'
    printf("Value of the variable 'b'"
           " declared as register: %d\n",
           b);
    printf("--------------------------------");
}
void externStorageClass()
{
    printf("\nDemonstrating extern class\n\n");
    // telling the compiler that the variable
    // z is an extern variable and has been
    // defined elsewhere (above the main
    // function)
    extern int x;
    // printing the extern variables 'x'
    printf("Value of the variable 'x'"
           " declared as extern: %d\n",
           x);
    // value of extern variable x modified
    x = 2;
    // printing the modified values of
    // extern variables 'x'
    printf("Modified value of the variable 'x'"
           " declared as extern: %d\n",
           x);
    printf("--------------------------------");
}
void staticStorageClass()
{
    int t = 0;
    printf("\nDemonstrating static class\n\n");
    // using a static variable 'y'
    printf("Declaring 'y' as static inside the loop.\n"
           "But this declaration will occur only"
           " once as 'y' is static.\n"
           "If not, then every time the value of 'y' "
           "will be the declared value 5"
           " as in the case of variable 'p'\n");
    printf("\nLoop started:\n");
    for (t = 1; t < 5; t++) {
        // Declaring the static variable 'y'
        static int y = 5;
        // Declare a non-static variable 'p'
        int p = 10;
        // Incrementing the value of y and p by 1
        y++;
        p++;
        // printing value of y at each iteration
        printf("\nThe value of 'y', "
               "declared as static, in %d "
               "iteration is %d\n",
               t, y);
        // printing value of p at each iteration
        printf("The value of non-static variable 'p', "
               "in %d iteration is %d\n",
               t, p);
    }
    printf("\nLoop ended:\n");
    printf("--------------------------------");
}
int main()
{
    printf("A program to demonstrate."
           " Storage Classes in C\n\n");
    // To demonstrate auto Storage Class
    autoStorageClass();
    // To demonstrate register Storage Class
    registerStorageClass();
    // To demonstrate extern Storage Class
    externStorageClass();
    // To demonstrate static Storage Class
    staticStorageClass();
    // exiting
    printf("\n\nStorage Classes demonstrated");
    return 0;
}

Output:

Storage Classes in C

Related Topics

How to create a stack in C++

A stack is a data structure, which is of linear type. A specific order has to be followed while inserting and deleting the elements from the stack. Generally, stack follows...

5 minutes read.

C++ History

C++ is a middle-level programming language developed in 1980s by Bjarne Stroustrup at Bel Labs. C ++ development initially started in 1979, four years before its launch. It is started with...

1 minute read.

Difference between Exit and Return

Define Exit() At the point when a client needs to leave a program from this capability is utilized. A void return type capability calls all capabilities enrolled at the exit and ends...

3 minutes read.

Difference between exit() and _Exit() in C++

Before understanding the difference between the exit() and _Exit(), one must know about exit() and _Exit() functions. The exit() function in C/C++ The exit() method in the C language kills the calling...

3 minutes read.

Differences between #define & const in C/C++

 Differences between #define & const in C/C++ A preprocessor directive is #define. The preprocessor replaces things defined by #define prior to starting compilation. In this chapter, we'll learn about the member, variable,...

3 minutes read.

Pure Virtual Function in C++ With Example Program

What is a Virtual Function? A virtual function is created inside a class with the keyword virtual. A virtual function does not have any value to be returned. Once a virtual...

3 minutes read.

C++ array to function

Arrays in C++ : Instead of defining distinct variables for each item, arrays are used to hold numerous values in a single variable. An array can be declared by specifying the variable...

4 minutes read.

C++ Infinite loop

The term "infinite loop" refers to a loop that does not terminate the loop according to the condition. In some cases, an infinite loop may be required in programming, or...

4 minutes read.

C++ Data Abstraction

Object-oriented programming (OOP) provides a number of characteristics that enable programmers to design programmes based on a variety of ideas, reducing errors and increasing program flexibility. The abstraction of data...

7 minutes read.

fread() Function in C++ Programming

C++ language is used to make high-performance applications that can work efficiently, and it is one of the world's most popular languages. It is an object-oriented and high-level programming language;...

3 minutes read.

C++ First Program

Let's write a simple basic program structure of C++, its compilation and its execution (how it runs). This program is compiled using GCC compiler. Open any editor to write C++ program. #include<iostream>   using namespace std;   int main(){       cout<<"Welcome to C++ program"<<endl;   } Output...

2 minutes read.

C++ If

C++ Control Statement C++ control statement or decision-making statement is used to control the flow of program statement according to condition applied. C++ if Control Statement An if control statement in C++ is used to...

2 minutes read.

C++ Date and Time

The date and time formats in C++ will be covered in this article. Because C++ lacks a proper date and time format, we must rely on the c language. The...

7 minutes read.

Memset in C++

Memset () is a function in the C++ programming language that fills memory blocks. The value of "ch" is first converted to an unsigned character. In this case, "ch" denotes the...

3 minutes read.

Initialize Vector in C++

Initialize Vector in C++  The following comparison operators are defined for vector and those are given below. ==, <, <=, !=, >,>=  This allows you to access the element of a vector using...

3 minutes read.

Function overloading in C++

Function overloading in C++ As we know that C++ works on the OOP Concepts, that are abstraction, encapsulation, and data hiding, it also uses the other important feature of OOP, which...

8 minutes read.

Classes and Objects in C++

When it comes to object-oriented programming, objects are the basic building blocks. Memory is taken up by objects, which contain data and methods or functions that operate on it. On...

3 minutes read.

Reverse an Array in C++

The many approaches to reverse an array in the C++ programming language will be discussed in this section. The term "reverse of an array" refers to changing the order of...

8 minutes read.

C++ Bidirectional Iterators

Iterators : Iterators serve as a link between algorithms and STL containers, allowing the data inside the container to be modified. They let you to iterate through the container, access and...

3 minutes read.

Size_t Data Type in C++

In C++, the type to express the object size in bytes is defined as Size_t, an unsigned integer type offered by the standard library for describing the object's size and...

3 minutes read.