home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat180.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
-
- void main()
- {
- char *s1 = "abcx";
- char *s2 = "xyazcde";
- char *s3 = "xyzbcdea";
- printf("▒qªrªΩ \"%s\" ñº╢}└Y║Γ░_│s─≥ª│ %d ¡╙ªrñ╕ªsªb⌐≤ªrªΩ \"%s\" ññ\n",
- s1, strspn(s1,s2), s2);
- printf("▒qªrªΩ \"%s\" ñº╢}└Y║Γ░_│s─≥ª│ %d ¡╙ªrñ╕ªsªb⌐≤ªrªΩ \"%s\" ññ\n",
- s1, strspn(s1,s3), s3);
- }
-