Synopsis
int puts(const char *s);
Description

puts writes the string pointed to by s to the standard output stream using putchar and appends a new-line character to the output. The terminating null character is not written.

puts returns EOF if a write error occurs; otherwise it returns a nonnegative value.