home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat169.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *string1 = "FoxPro 2.0 ╡{ªí│]¡p---ñJ¬∙╜g";
- char *string2 = "FoxPro 2.0 ╡{ªí│]¡p---╢i╢Ñ╜g";
- char *string3 = "FoxPro 2.0 ╡{ªí│]¡p---º▐Ñ⌐╗P╣Ω░╚";
-
- printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string1, strlen(string1));
- printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string2, strlen(string2));
- printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string3, strlen(string3));
- }