C - Loop Control Statements
Identify the error in this code snippet using
continue:
int i = 0;
while (i < 5) {
if (i == 2)
continue;
printf("%d ", i);
i++;
}