WHAT IS THE OUTPUT OF THE FOLLOWING C CODE? #include <stdio.h>int main() { in...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
WHAT IS THE OUTPUT OF THE FOLLOWING C CODE? #include <stdio.h>int main() { int i; for (i = 0; i < 5; i++) { if (i == 3) continue; printf("%d ", i); } return 0;}