home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat173.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *src1 = "FoxPro 2.0 ╡{ªí│]¡p-----ñJ ¬∙ ╜g";
- char *src2 = "FoxPro 2.0 ╡{ªí│]¡p-----╢i ╢Ñ ╜g (▒i│╙╖╕ ╡█)";
- char *src3 = "FoxPro 2.0 ╡{ªí│]¡p-----º▐Ñ⌐╗P╣Ω░╚ (▒i│╙╖╕,│░ñh┼v ╡█)";
- char dst[54];
-
- strncpy(dst, src2, 47);
- printf("%s\n", dst);
- strncpy(dst, src1, 34);
- printf("%s\n", dst);
- strncpy(dst, src3, 54);
- printf("%s\n", dst);
- }