RosettaCodeData/Task/Flow-control-structures/C/flow-control-structures.c

14 lines
165 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
int main()
{
int i,j;
for (j=1; j<1000; j++) {
for (i=0; i<j, i++) {
if (exit_early())
goto out;
/* etc. */
}
}
out:
return 0;
}