Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
int y = 10000;
int y = 34;
printf("Hello World! %d\n", y);
return 0;
}
β
Correct Answer: (A)
Compile time error