C Programming
easyQ1
What is the output of: #include <stdio.h> int main() { int i; for (i = 0; i < 5; i++) if (i == 2) continue; printf("%d", i); return 0; }
1 / 15
What is the output of: #include <stdio.h> int main() { int i; for (i = 0; i < 5; i++) if (i == 2) continue; printf("%d", i); return 0; }