home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat121.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
-
- void main()
- {
- char *src = "FoxPro For Window is coming to us this year. Say Yeah!";
- char dest[80];
- char *pointers;
-
- pointers = memccpy(dest, src, '!', strlen(src));
-
- if (pointers)
- {
- *pointers = '\0';
- printf("ª╣ªrñ╕ñwºΣ¿∞ : %s\n", dest);
- }
- else
- printf("ºΣñú¿∞ª╣ªrñ╕\n");
- }