puts - print string to standard output
Standard C Library (libc, -lc)
#include <stdio.h>
int
puts(const char *string);
The string string, and a following newline character, are printed on the standard output.
On success, puts returns a nonnegative integer. On error, -1 is returned, and errno is set according to the error encountered.
Any of the errors from write may occur.