home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat127.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *s = "FoxPro 2.0\n";
- int c = '$';
-
- printf("░⌡ªµ memset() ¿τ╝╞½e s ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", s);
- memset(s, c, strlen(s));
- printf("░⌡ªµ memset() ¿τ╝╞½ß s ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", s);
- }