Q21
What is the purpose of the fgets function in C?
A.
Read a file
B.
Read a string from the console
AnswerC.
Write to a file
D.
Write to the console
Answer: Option B
Solution
Answer: Option B
Solution:
The purpose of the fgets function in C is to read a string from the console.
fgets reads a line of text from the specified input stream and stores it into the string pointed to by the provided pointer.
This function is often used to read input from the user via the console.
Therefore,
fgets = read a string from the console.