The C library function _________ breaks string s1 into a series of tokens using the delimiter s2.
Answer: A
The C library function char *strtok(char *s1, const char *s2) breaks string s1 into a series of tokens using the delimiter s2.