Chinese, asked by dainvincible1, 1 year ago

What is the output of the program?

#include
int main()
{
extern int a;
printf("%d\n", a);
return 0;
}
int a=20;

Answers

Answered by nikitasingh79
2
output
20
it prints the local variable 20
Answered by Anonymous
0
OUTPUT

20

IT WILL PRINT VARIABLE 20
Similar questions