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