std::gets
From cppreference.com
Defined in header <cstdio>
|
||
char *gets( char *str ); |
(deprecated) | |
Reads stdin into given character string until a newline character is found or end-of-file occurs.
Contents |
[edit] Parameters
str | - | character string to be written |
[edit] Return value
str on success, NULL otherwise
[edit] Notes
The bounds checking is not performed, therefore this function is extremely vulnerable to buffer-overflow attacks. Use fgets() instead.
[edit] See also
reads formatted input from stdin, a file stream or a buffer (function) | |
gets a character string from a file stream (function) | |
writes a character string to a file stream (function) | |
C documentation for gets
|