putc

Writes one character to an output stream

#include <stdio.h>
void putc (
        long c,
        FILE *stream
)

Arguments

c Output character
stream Pointer to output stream

Return Value

None

Explanation

The character c is written to the output stream pointed to by stream.

See Also

putchar(), puts()