What does the following C code snippet mean?
char *gets(char *s)
char *gets(char *s)
A. reads the next input line into the array s
B. writes the line into the array s
C. reads the next input character into the array s
D. write a character into the array
Answer: Option A
Join The Discussion