1.

The strpbrk() function is used to return a pointer to the character, or a null pointer if no character from s2 occurs in s1.(a) true(b) falseI had been asked this question in examination.The doubt is from String Operations in portion String Operations in C of C

Answer»

The CORRECT option is (a) true

For EXPLANATION: CHAR *strpbrk(const char *S1,const char *S2);

The first occurrence in the string s1 of any character from the string s2 is done by strpbrk().



Discussion

No Comment Found

Related InterviewSolutions