home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat175.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *s = "Do you really want to hurt me !";
- char fill = '*';
-
- printf("░⌡ªµ strnset() ½eªrªΩ s ñº¡╚¼░: %s\n", s);
- strnset(s, fill, 22);
- printf("░⌡ªµ strnset() ½ßªrªΩ s ñº¡╚¼░: %s\n", s);
- }