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

  1. main()    /* toupper.c -- illustrates toupper() function */
  2.     {
  3.  
  4.     int a, c;
  5.     printf("Type any lower case character: ");
  6.     a = getchar();
  7.     c = toupper(a);
  8.  
  9.     if(a > 'Z' && a <= 'z')
  10.     printf("\nFor your information, %c in upper case is %c.", a, c);
  11.     else
  12.      printf("\nBeg pardon, but that was not lowercase!\n");
  13.  
  14.     }
  15.