1 point
What is the output of the
program?
#include<stdio.h>
int main()
{
extern int a;
printf("%d\n", a);
return 0;
}
int a=20;
20
OO
O Garbage Value
O Error
Answers
Answered by
0
Explanation:
output of the program is 20
Answered by
10
Explanation:
Similar questions