std::fputs
From cppreference.com
Defined in header <cstdio>
|
||
int fputs( const char *str, FILE *stream ); |
||
Writes given null-terminated character string to the given output stream.
Parameters
str | - | null-terminated character string to be written |
stream | - | output stream |
Return value
Non-negative integer on success, EOF on failure
See also
C documentation for fputs
|