Namespaces
Variants
Views
Actions

std::fgets

From cppreference.com
< cpp | io | c
Defined in header <cstdio>
char *fgets( char *str, int count, FILE *stream );

Reads at most count - 1 characters from the given file stream and stores them in str. The produced character string is always NULL-terminated. Parsing stops if end-of-file occurs or a newline character is found, in which case str will contain that newline character.

[edit] Parameters

str - string to read the characters to
count - the length of str
stream - file stream to read the data from

[edit] Return value

str on success, NULL on an error

[edit] See also

reads formatted input from stdin, a file stream or a buffer
(function) [edit]
reads a character string from stdin
(function) [edit]
writes a character string to a file stream
(function) [edit]
C documentation for fgets