Which among the given options compares atmost n characters of string ch to string s?
Answer: A
int strncmp(ch, s, n) is used to compare at most n characters of string ch to string s; return <0>s.