Q. What is the output of this program?
Code:
#include <stdio.h>
int main()
{
printf("variable! %d", x);
return 0;
}
β
Correct Answer: (C)
Compile time error
#include <stdio.h>
int main()
{
printf("variable! %d", x);
return 0;
}
You must be Logged in to update hint/solution