Q195
What will be the output of the following C code? #include int main() int i = 10, j = 2; printf("%d ", printf("%d %d ", i, j));
A.
Compile time error
B.
10 2 4
C.
10 2 2
D.
10 2 5
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board