Advertisements
Advertisements
Question
Explain various storage classes with example.
Solution
Storage Classes :-
Storage Classes are used to describe about the features of a variable/function. These features basically include the scope, visibility and life-time which help us to trace the existence of a particular variable during the runtime of a program. To specify the storage class for a variable, the following syntax is to be followed:
Syntax:
storage_class var_data_type var_name;
C language uses 4 storage classes, namely:
i. Automatic storage class :
This is the default storage class for all the variables declared inside a function or a block. Hence, the keyword auto is rarely used while writing programs in C language. Auto variables can be only accessed within the block/function they have been declared and not outside them (which defines their scope). Of course, these can be accessed within nested blocks within the parent block/function in which the auto variable was declared. However, they can be accessed outside their scope as well using the concept of pointers given here by pointing to the very exact memory location where the variables resides. They are assigned a garbage value by default whenever they are declared.
ii. External storage class :
Extern storage class simply tells us that the variable is defined elsewhere and not within the same block where it is used. Basically, the value is assigned to it in a different block and this can be overwritten / changed in a different block as well. So an extern variable is nothing but a global variable initialized with a legal value where it is declared in order to be used elsewhere. It can be accessed within any function/block. Also, a normal global variable can be made extern as well by placing the ‘extern’ keyword before its declaration/definition in any function/block. This basically signifies that we are not initializing a new variable but instead we are using/accessing the global variable only. The main purpose of usingextern variables is that they can be accessed between two different files which are part of a large program. For more information on how extern variables work, have a look at this link.
iii. Static storage class :
This storage class is used to declare static variables which are popularly used while writing programs in C language. Static variables have a property of preserving their value even after they are out of their scope! Hence, static variables preserve the value of their last use in their scope. So we can say that they are initialized only once and exist till the termination of the program. Thus, no new memory is allocated because they are not re-declared. Their scope is local to the function to which they were defined. Global static variables can be accessed anywhere in the program. By default, they are assigned the value 0 by the compiler.
iv. Register storage class :
This storage class declares register variables which have the same functionality as that of the auto variables. The only difference is that the compiler tries to store these variables in the register of the microprocessor if a free register is available. This makes the use of register variables to be much faster than that of the variables stored in the memory during the runtime of the program. If a free register is not available, these are then stored in the memory only. Usually few variables which are to be accessed very frequently in a program are declared with the register keyword which improves the running time of the program. An important and interesting point to be noted here is that we cannot obtain the address of a register variable using pointers.
// A C program to demonstrate different storage classes
#include <stdio.h>
#include <conio.h>
extern int x = 9;
int z = 10;
int main()
{
auto int a = 32;
register char b = 'G';
extern int z;
printf("Hello World!\n");
printf("\nThis is the value of the auto " " integer 'a': %d\n",a);
printf("\nThese are the values of the" " extern integers 'x' and 'z'" "
respectively: %d and %d\n", x, z);
printf("\nThis is the value of the " "register character 'b': %c\n",b);
x = 2;
z = 5;
printf("\nThese are the modified values " "of the extern integers 'x'
and " "'z' respectively: %d and %d\n",x,z);
printf("\n'y' is a static variable and its " "value is NOT initialized to
5 after" " the first iteration! See for" " yourself :)\n");
while (x > 0)
{
static int y = 5;
y++;
printf("The value of y is %d\n",y);
x--;
}
printf("\nBye! See you soon.\n");
return 0;
}
Output :
Hello World! This is the value of the auto integer 'a': 32 These are the values of the extern integers 'x' and 'z' respectively: 9 and 10 This is the value of the register character 'b': G These are the modified values of the extern integers 'x' and 'z' respectively: 2 and 5 'y' is a static variable and its value is NOT initialized to 5 after the first iteration! See for yourself :) The value of y is 6 The value of y is 7 Bye! See you soon. |
APPEARS IN
RELATED QUESTIONS
Draw the flowchart for finding the roots of quadratic equation. Write program for same.
Define Algorithm. Write Algorithm to check whether given number is Armstrong number or not also mention input and output specifications to algorithm.
State True or False with reason.
An algorithm is a graphical representation of the logic of a program.
Draw flowchart for “if…else” and “while” statement of C language.
What is the need of computer programming. What do you mean by structured programming? Develop an ALGORITHM and FLOWCHART to find reverse of a number.
Draw the flow chart to find roots of a quadratic equation.