21
What is the purpose of the fgets function in C?
Answer & Solution
Answer: Option
B
Solution:
The purpose of the
This function is often used to read input from the user via the console.
Therefore,
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.