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

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