{{keywords>wiki library source code example reference}} ===== puts ====== int puts(const char *str); Writes str (excluding terminating NUL) and a newline to stdout. Returns non-negative on success, EOF on error. ===== Example Source ===== /* * puts example code * http://code-reference.com/c/stdio.h/puts */ #include /* including standard library */ //#include /* uncomment this for Windows */ int main ( void ) { char string [30] = "This is a test for puts!"; puts (string); return 0; } ==== output ==== ./puts This is a test for puts!