51
What will be the output of the following C code?
#include <stdio.h>
int x = 5;
void main()
{
int x = 3;
printf("%d", x);
{
x = 4;
}
printf("%d", x);
} Answer & Solution
Answer: Option
D
No explanation is given for this question. Let's Discuss on Board