Strstr

Nasza ocena:

3
Wyświetleń: 497
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Strstr - strona 1 Strstr - strona 2

Fragment notatki:

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)

Zaloguj się, aby dodać komentarz