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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat160.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.      char *dst = "⌐pº╓╝╓╢▄ ? ";
  10.      char *src = "º┌½▄º╓╝╓ !!";
  11.  
  12.      strcat(dst,src);
  13.      printf("%s\n",dst);
  14. }
  15.