Vidyalelo
C Programming · Q21

Arrays and Strings

Programming · C Programming · question 21

Q21

What is the purpose of the fgets function in C?

A.
Read a file
B.
Read a string from the console
Answer
C.
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.