home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat176.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *string1 = "Window 3.1";
- char *string2 = "Super Woman";
- char *ptr;
-
- ptr = strpbrk(string1, string2);
-
- if (ptr)
- printf(" \"%s\" ªb \"%s\" ññÑX▓{¬║▓─ñ@¡╙ªr¼O \'%c\' \n",
- string1, string2, *ptr);
- else
- printf(" \"%s\" ¿Sª│ªb \"%s\" ññÑX▓{Ñ⌠ª≤ªr\n",
- string1, string2);
- }
-
-