home *** CD-ROM | disk | FTP | other *** search
- main() /* toupper.c -- illustrates toupper() function */
- {
-
- int a, c;
- printf("Type any lower case character: ");
- a = getchar();
- c = toupper(a);
-
- if(a > 'Z' && a <= 'z')
- printf("\nFor your information, %c in upper case is %c.", a, c);
- else
- printf("\nBeg pardon, but that was not lowercase!\n");
-
- }