home *** CD-ROM | disk | FTP | other *** search
- main() /* switch.c -- illustrates use of switch, case, default and break statements */
- {
- char c;
- puts("Type in 1, 2 or 3 or any other character");
- c = getchar();
- switch (c)
- {case '1':
- puts("\nYou're in case 1");
- case '2':
- puts("\nYou're in case 2");
- break;
- case '3':
- puts("\nYou're in case 3");
- break;
- default:
- puts("\nYour pressed something other than 1, 2 or 3");}
- puts("End of switch");
- }