std::puts
From cppreference.com
Defined in header <cstdio>
|
||
int puts( char *str ); |
||
Writes character string str
and a newline to stdout
Parameters
str | - | character string to be written |
Return value
Non-negative number on success or EOF otherwise
See also
C documentation for puts
|