home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat161.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
-
- void main()
- {
- char *s = "FoxPro 2.0 For Window";
- char *poisition, c = '2';
-
- poisition = strchr(s, c);
- if(poisition)
- printf("ªrñ╕ '%c' ▓─ñ@ª╕ÑX▓{⌐≤ªrªΩ '%s' ñññºª∞╕m¼░: %d\n",c,s,poisition-s);
- else
- printf("╡L¬k⌐≤ªrªΩ '%s' ññºΣ¿∞ªrñ╕ '%c' \n",s,c);
- }