home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / IS_TESTS.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  1.4 KB  |  88 lines

  1. main()    /* is_tests.c -- illustrates 'is' functions */
  2.  
  3. {
  4.  
  5. char c, t;
  6.  
  7. puts("Type any alphanumeric key on the keyboard\n");
  8.  
  9.  
  10. c = getchar();
  11. printf(" ... Ok, you want to know about '%c':\n",c);
  12.  
  13. t = isalpha(c);
  14.  
  15. putchar(10);
  16. if (t != 0)
  17.     printf("that was an alphabetic character\n");
  18.  
  19. t = isupper(c);
  20.  
  21. if (t != 0)
  22.     printf("and it was upper case\n");
  23.  
  24. t = islower(c);
  25.  
  26. if (t != 0)
  27.     printf("and it was lower case\n");
  28.  
  29. t = isdigit(c);
  30.  
  31. if (t != 0)
  32.     printf("I saw that digit\n");
  33.  
  34. t = isxdigit(c);
  35.  
  36. if (t != 0)
  37.     printf("you can't fool me with that hexidecimal\n");
  38.  
  39. t = isodigit(c);
  40. if (t != 0)
  41.     printf("if you knew octal, like I know octal ...\n");
  42.  
  43. t = isspace(c);
  44.  
  45. if (t != 0)
  46.     printf("that was a space or a tab\n");
  47.  
  48. t = ispunct(c);
  49.  
  50. if (t != 0)
  51.     printf("ok, so you know how to punctuate\n");
  52.  
  53. t = isalnum(c);
  54.  
  55. if (t != 0)
  56.     printf("that was an alphanumeric character\n");
  57.  
  58. t = isprint(c);
  59.  
  60. if (t != 0)
  61.     printf("and it was printable\n");
  62.  
  63. t = isgraph(c);
  64.  
  65. if (t != 0)
  66.     printf("that was a graphics character\n");
  67.  
  68. t = iscntrl(c);
  69.  
  70. if (t != 0)
  71.     printf("that was a control character\n");
  72.  
  73. t = isascii(c);
  74.  
  75. if (t != 0)
  76.     printf("well, at least it was ASCII\n");
  77.  
  78. t = iscsym(c);
  79.  
  80. if (t != 0)
  81.     printf("it could be a valid character for a c identifier \n");
  82.  
  83. t = iscsymf(c);
  84.  
  85. if (t != 0)
  86.     printf("it could even be the first character in a c identifier \n");
  87. }
  88.