To tylko jedna z 2 stron tej notatki. Zaloguj się aby zobaczyć ten dokument.
Zobacz
całą notatkę
Strstr char *strstr(const char *s1, const char *s2); strstr scans s1 for the first occurrence of the substring s2 On success, strstr returns a pointer to the element in s1 where s2 begins (points to s2 in s1) If s2 does not occur in s1, strstr returns NULL #include #include int main() { char *str1 = "Computer Programming", *str2 = "ram", *ptr; ptr = strstr(str1, str2); printf("The substring is: %s\n", ptr); return 0; } /* The substring is: ramming */
... zobacz całą notatkę
Komentarze użytkowników (0)