C - Loops
What is the output of this C code?
for (int i = 1; i <= 2; i++) {
for (int j = 1; j <= 3; j++) {
printf("%d%d ", i, j);
}
}for (int i = 1; i <= 2; i++) {
for (int j = 1; j <= 3; j++) {
printf("%d%d ", i, j);
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions