Top

Discussion

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.false

Answer: A

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().

No comment is present. Be the first to comment.
Loading…

Post your comment