home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / GOTO.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  276 b   |  22 lines

  1. main()    /* goto.c -- tests goto statement */
  2.  
  3. {
  4. int a, b, c, d;
  5. puts("Tests three if statements");
  6. a = 3;
  7. b = 4;
  8. c = 4;
  9. d = 6;
  10.  
  11. if(c == 4)
  12. if(a == 3)
  13. if(b == 4)
  14.     goto label;
  15. finish:
  16.     printf("done");
  17.     exit();
  18. label:
  19.     printf("it worked\n");
  20.     goto finish;
  21. }
  22.