Page 71 - INTRODUCTION_TO_C++_Neat
P. 71

Functions      Copies string s2 into str

strcpy(s1, s2);  Concatenates string s2 onto
strcat(s1, s2);
strlen(s1);      Returns the length of st
strcmp(s1, s2);  Returns 0 if s1 and s2 are th
strchr(s1, ch);  s1>s2.
strstr(s1, s2);  Returnsapointer to thefirst o
                 Returns a pointer to the first
   66   67   68   69   70   71   72   73   74   75   76