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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat171.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    char *dst = "FoxPro 2.0 ╡{ªí│]¡p-----";
  10.    char *src1 = "º▐Ñ⌐╗P╣Ω░╚";
  11.    char *src2 = "(º@¬╠: │╣Ñ▀Ñ┴,▒i│╙╖╕,│░ñh┼v)";
  12.  
  13.  
  14.    strncat(dst, src1, strlen(src1));
  15.    strncat(dst, src2, strlen(src2));
  16.    printf("%s\n", dst);
  17. }
  18.