Vidyalelo
C Programming · Q106

Control Structures

Programming · C Programming · question 106

Q106

What will be the output of the following C code? #include int main() int i = 0, j = 0; while (i < 5, j < 10) i++; j++; printf("%d, %d ", i, j);

A.
5, 5
B.
5, 10
C.
10, 10
Answer
D.
Syntax error

Answer: Option C

Solution

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