putchar

Writes a single character to the standard output (stdout) and returns the character.

Format

#include  <stdio.h>

int putchar  (int character);

Argument

character
An object of type int.

Description

This function is identical to fputc (character, stdout).

Return Values
character  Indicates success. 
EOF  Indicates output errors. 


Previous Page | Next Page | Table of Contents | Index