home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat126.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *dst = "⌐pº╓╝╓╢▄ ?";
- char *src = "º┌½▄º╓╝╓ !";
-
- printf("░⌡ªµ memmove() ¿τ╝╞½e dst ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", dst);
- memmove(dst+strlen(dst), src, strlen(src));
- printf("░⌡ªµ memmove() ¿τ╝╞½ß dst ⌐╥½ⁿñº╜w╜─░╧ñº╕Ω«╞¼░: %s\n", dst);
- }