Which code from the given option return pointer to last occurrence of c in ch or NULL if not present?
Answer: B
The function char *strrchr(ch, c) returns pointer to last occurrence of c in ch or NULL if not present.