C - Loops
How can you modify this loop to skip printing the number 4?
for(int i = 1; i <= 5; i++) {
printf("%d ", i);
}for(int i = 1; i <= 5; i++) {
printf("%d ", i);
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions