A
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;
void main()
printf(“%d”,x);
x=2;
getch();
}
int x=23;
- Correct Answer - Option(C)
- Views: 25
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.