puts

Writes a character string to the standard output stream

#include <stdio.h>
void puts (
        const char *s
)

Arguments

s Output character string

Return Value

None

Explanation

The character string s is written to the standard output stream (stdout). A newline character is appended to the end of the string.

See Also

putc(), putchar()