home *** CD-ROM | disk | FTP | other *** search
- main() /* goto.c -- tests goto statement */
-
- {
- int a, b, c, d;
- puts("Tests three if statements");
- a = 3;
- b = 4;
- c = 4;
- d = 6;
-
- if(c == 4)
- if(a == 3)
- if(b == 4)
- goto label;
- finish:
- printf("done");
- exit();
- label:
- printf("it worked\n");
- goto finish;
- }