C - Loop Control Statements
Consider this code snippet:
What is the output and why?
int main() {
int i = 0;
loop:
if (i == 5) goto end;
printf("%d ", i);
i++;
goto loop;
end:
return 0;
}What is the output and why?
