home *** CD-ROM | disk | FTP | other *** search
- main() /* tolower.c -- illustrates tolower() function */
- {
-
- int a, c;
- printf("Type any upper case character: ");
- a = getchar();
- c = tolower(a);
-
- if(a > 'A' && a <= 'Z')
- printf("\nFor your information, %c in lower case is %c.", a, c);
- else
- printf("\nHey bud, that wasn't uppercase!\n");
-
- }
-