Code:
Q1.What will be output of the following c program?
#include<stdio.h>
static num=5;
int num;
extern int num;
int main(){
printf("%d",num);
return 0;
}
Q1.What will be output of the following c program?
#include<stdio.h>
static num=5;
int num;
extern int num;
int main(){
printf("%d",num);
return 0;
}
Comment