home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat179.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *s1 = "FoxPro 2.0 For Window";
- char fill = '*';
-
- printf("ªrªΩ s1 ªb¿╧Ñ╬ strset() ¿τ╝╞╢iªµ┤└┤½½e¼░: \"%s\"\n", s1);
- strset(s1, fill);
- printf("ªrªΩ s1 ªb¿╧Ñ╬ strset() ¿τ╝╞╢iªµ┤└┤½½ß¼░: \"%s\"\n", s1);
- }