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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat96.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <ctype.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.   char c = '*';
  10.   if(isprint(c))
  11.      printf(" %c  ¼Oñ@¡╙ÑiªCªLªrñ╕\n",c);
  12.   else
  13.      printf(" %c  ¼Oñ@¡╙ñúÑiªCªLªrñ╕\n",c);
  14. }
  15.