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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat175.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main()
  8. {
  9.    char *s = "Do you really want to hurt me !";
  10.    char fill = '*';
  11.  
  12.    printf("░⌡ªµ strnset() ½eªrªΩ s ñº¡╚¼░: %s\n", s);
  13.    strnset(s, fill, 22);
  14.    printf("░⌡ªµ strnset() ½ßªrªΩ s ñº¡╚¼░: %s\n", s);
  15. }
  16.