home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat123.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *s1 = "CCC";
- char *s2 = "CCE";
- char *s3 = "CCF";
-
- int status;
-
- status = memcmp(s2, s1, strlen(s2));
- if (status > 0)
- printf("╜w╜─░╧ 2--%s ñj⌐≤ ╜w╜─░╧ 1--%s\n",s2,s1);
- else
- printf("╜w╜─░╧ 2--%s ñp⌐≤ ╜w╜─░╧ 1--%s\n",s2,s1);
-
- status = memcmp(s2, s3, strlen(s2));
- if (status > 0)
- printf("╜w╜─░╧ 2--%s ñj⌐≤ ╜w╜─░╧ 3--%s\n",s2,s3);
- else
- printf("╜w╜─░╧ 2--%s ñp⌐≤ ╜w╜─░╧ 3--%s\n",s2,s3);
- }