Tell about strtok & strstr functions

Answer Posted / swetcha


include <string.h>

char *strstr (char * s1 , const char * s2 );

In the above case
The strstr function locates the first occurrence in the
string pointed to by s1 of the sequence of characters
(excluding the terminating null character) in the string
pointed to by s2.

The strstr function returns a pointer to the located
string, or a null pointer if the string is not found. If s2
points to a string with zero length, the function returns
s1.
The strtok function
See the below case
#include <string.h>

char *strtok (char * s1 , const char * s2 );


A sequence of calls to the strtok function breaks the
string pointed to by s1 into a sequence of tokens, each of
which is delimited by a character from the string pointed
to by s2. The first call in the sequence has s1 as its
first argument, and is followed by calls with a null
pointer as their first argument. The separator string
pointed to by s2 may be different from call to call.


The strtok function returns a pointer to the first
character of a token, or a null pointer if there is no token

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages and disadvantages of pointers?

567


Dont ansi function prototypes render lint obsolete?

598


What is the difference between the = symbol and == symbol?

615


What is meant by gets in c?

597


What are identifiers in c?

621






Differentiate Source Codes from Object Codes

807


Can we change the value of #define in c?

578


How can I dynamically allocate arrays?

581


How do I swap bytes?

620


What are the different types of control structures?

576


What is the purpose of & in scanf?

586


What is a pointer on a pointer in c programming language?

609


How do you define a string?

647


shorting algorithmS

1790


Why do we need arrays in c?

571