Q. What will be output if you will compile and execute the following c code?
Code:
int extern x; void main() printf(“%d”,x); x=2; getch(); } int x=23;
β
Correct Answer: (C)
23
int extern x; void main() printf(“%d”,x); x=2; getch(); } int x=23;
You must be Logged in to update hint/solution