home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT164.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-18  |  521 b   |  16 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat164.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main()
  8.  {
  9.     char *dst = "FoxPro 2.0";
  10.     char *str = "FoxPro 2.0 ╡{ªí│]¡p--º▐Ñ⌐╗P╣Ω░╚";
  11.  
  12.     printf("░⌡ªµ strcpy() ¿τ╝╞½e░}ªC dst ñññº╕Ω«╞¼░ %s\n", dst);
  13.     strcpy(dst, str);
  14.     printf("░⌡ªµ strcpy() ¿τ╝╞½ß░}ªC dst ñññº╕Ω«╞¼░ %s\n", dst);
  15.  }
  16.