const char * strchr ( const char * str, int character ); char * strchr ( char * str, int character );
char * strchr ( const char *, int );
|
|
Looking for the 's' character in "This is a sample string"... found at 4 found at 7 found at 11 found at 18 |