What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 10, j = 3;
printf("%d %d %d", i, j);
}
#include <stdio.h>
int main()
{
int i = 10, j = 3;
printf("%d %d %d", i, j);
}
A. Compile time error
B. 10 3
C. 10 3 some garbage value
D. Undefined behaviour
Answer: Option C
Join The Discussion