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

14 lines
165 B
C
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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;
}