Home » C Programming » Declarations and Initializations

What is the output of the program? #include<stdio.h> int main() { extern int a; printf("%d\n", a); return 0; } int a=20;

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!