home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat164.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *dst = "FoxPro 2.0";
- char *str = "FoxPro 2.0 ╡{ªí│]¡p--º▐Ñ⌐╗P╣Ω░╚";
-
- printf("░⌡ªµ strcpy() ¿τ╝╞½e░}ªC dst ñññº╕Ω«╞¼░ %s\n", dst);
- strcpy(dst, str);
- printf("░⌡ªµ strcpy() ¿τ╝╞½ß░}ªC dst ñññº╕Ω«╞¼░ %s\n", dst);
- }