Output of C programs | Set 35 (Loops)
Short question based on c loops 1. What will be the output of the following code? C #include <stdio.h> int main() { int i = 0, j = 0; while (i<5,j<10) { i++; j++; } printf("%d %d", i, j); } options : a) 5 5 b) syntax error c) 5 10 d) 10 10 Answer: d Explanation : Here, both the