C Programming

easy
0/15 answered
Q1

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