home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat122.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
-
- void main()
- {
- char str[80];
- char *where;
-
- strcpy(str, "FoxPro 2.0 Programmer's Guide--Basic:By Alex-Jang");
- where = memchr(str, 'G', strlen(str));
- if (where)
- printf("ªrñ╕ 'G' ª∞⌐≤ª∞╕m %d ñW\n", where - str + 1);
- else
- printf("ºΣñú¿∞½ⁿ⌐wñºªrñ╕\n");
- }