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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat127.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main()
  8. {
  9.      char *s = "FoxPro 2.0\n";
  10.      int c = '$';
  11.  
  12.      printf("░⌡ªµ memset() ¿τ╝╞½e s ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", s);
  13.      memset(s, c, strlen(s));
  14.      printf("░⌡ªµ memset() ¿τ╝╞½ß s ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", s);
  15. }
  16.