std::puts
From Cppreference
Defined in header <cstdio>
|
||
int puts( char *str );
|
||
Writes character string str and a newline to stdout
[edit] Parameters
str | - | character string to be written |
[edit] Return value
non-negative number on success or EOF otherwise
[edit] See also
writes a character string to a file stream (function) |
|
(C++11) |
prints formatted output to stdout, a file stream or a buffer (function) |