Syntax:
#include <cstdio> int puts( char *str );
The function puts() writes str to stdout, then writes a newline character. puts() returns non-negative on success, or EOF on failure.
Related Topics: fputs, gets, printf, putc