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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat178.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    char *s = "FoxPro 2.0 API";
  10.  
  11.    printf(" ªrªΩ \"%s\" ªb░f┬α½ßª¿¼░", s);
  12.    strrev(s);
  13.    printf(" \"%s\" \n",s);
  14. }
  15.