RosettaCodeData/Task/Jump-anywhere/C/jump-anywhere-1.c
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
129 B
C

if (x > 0) goto positive;
else goto negative;
positive:
printf("pos\n"); goto both;
negative:
printf("neg\n");
both:
...