Top

Discussion

Is there any function declared as strstr()?

  • A.true
  • B.false

Answer: A

This function returns a pointer to the first occurrence in s1 of any of the entire sequence of characters specified in s2, or a null pointer if the sequence is not present in s1.
char *strstr(const char *s1, const char *s2)

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

Post your comment