2.12.5.10 puts
Declaration:
int puts(const char *str);
Writes a string to stdout up to but not including the null character. A newline character is appended to the output.
On success a nonnegative value is returned. On error EOF is returned.
Declaration:
int puts(const char *str);
Writes a string to stdout up to but not including the null character. A newline character is appended to the output.
On success a nonnegative value is returned. On error EOF is returned.