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 know we work 24x7 to provide you best tutorials
Please encourage us - write a review on Google

