puts

Writes a character string to the standard output (stdout) followed by a new-line character.

Format

#include  <stdio.h>

int puts  (const char *str);

Argument

str
A pointer to a character string.

Description

This function does not copy the terminating null character to the output stream.

Return Values
Nonnegative value  Indicates success. 
EOF  Indicates output errors. 


Previous Page | Next Page | Table of Contents | Index