putchar
Writes one character to the standard output stream
#include <stdio.h>
long
putchar
(
char c,
)
Arguments
c
Output character
Return Value
None
Explanation
The character
c
is written to the standard output stream.
putchar()
is equivalent to
putc(stdout)
.
See Also
putc()
,
puts()