C Program For Storage Classes
Get Certified in C Programming and Take Your Skills to the Next Level
Program 1
// Program to show Storage classes
#include<stdio.h>
#include<conio.h>
void main()
{
extern int a;
printf("%d",a); //0
}
Did you like our efforts? If Yes, please give DataFlair 5 Stars on Google

