हिंदी

What is the Usage of Storage Classes? Explain Extern Storage Classes with Suitable Example. - Structured Programming Approach

Advertisements
Advertisements

प्रश्न

What is the usage of storage classes? Explain extern storage classes with suitable example.

संक्षेप में उत्तर

उत्तर

1. The different locations I the computer where we can store data and their accessibility, initial values etc. vary based on the way they are declared. These different ways are termed as different storage classes.

2. In C, we have four storage classes namely
i. Automatic
ii. Register
iii. Static
iv. Extern or Global.

Extern Classes:

1. In this case data is stored in memory.
2. The initial variable of such variable is zero.
3. The scope of the variable is zero i.e. it is accessible from anywhere in the program.
4. The life of such variable is till the program is alive.
5. Let us see the example

#include<stdio.h>
#include<conio.h>
int a=5;
void main
{
Int a=10;
printf(“%d\n”,a);
printf(“%d\n”,::a);
a=::a+a;
printf(“%d\n”,a);
printf(“%d\n”,::a);
::a=a;
printf(“%d\n”,a);
printf(“%d\n”,::a);
getch();
}

Output:
                 10
                  5
                 15
                  5
                 15
                 15

shaalaa.com
Storage Classes
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2016-2017 (June) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×