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

  1. main()    /* tolower.c -- illustrates tolower() function */
  2.     {
  3.  
  4.     int a, c;
  5.     printf("Type any upper case character: ");
  6.     a = getchar();
  7.     c = tolower(a);
  8.  
  9.     if(a > 'A' && a <= 'Z')
  10.     printf("\nFor your information, %c in lower case is %c.", a, c);
  11.     else
  12.      printf("\nHey bud, that wasn't uppercase!\n");
  13.  
  14.     }
  15.