Vidyalelo
C Programming · Q163

File Input Output

Programming · C Programming · question 163

Q163

What will be the output of the following C code? #include 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
Answer
D.
Undefined behaviour

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board