Home » C Programming » Declarations and Initializations

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!