Synopsis
Edit
#include <stdio.h> int puts(const char *s);
Description
Edit
puts writes the string pointed to by s to stdout and appends a '\n' (linefeed).
It returns EOF on error.
Examples
Edit
#include <stdio.h> int main() { puts("Hello, World!"); return 0; }
This will simply print "Hello, World!", followed by line feed, to stdout.