What is the use of function char *strchr(ch, c)?
Answer: B
The given code char *strchr(ch, c) return pointer to first occurrence of c in ch or NULL if not present.