puts()
Syntax:
#include <stdio.h> int puts( char *str );
Description:
The function puts() writes str to STDOUT. puts() returns non-negative on success, or EOF on failure.
Related Topics:
putc(), gets(), printf()
#include <stdio.h> int puts( char *str );