home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT90.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-01  |  391 b   |  15 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat90.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <ctype.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.   char c='B';
  10.   if(isascii(c))
  11.      printf(" %c  ¼O ascii\n",c);
  12.   else
  13.      printf(" %c  ñú¼O ascii\n",c);
  14. }
  15.