

putchar()                     STDIO                     putchar()




Write a character onto the standard output

#include <stdio.h>
iinntt ppuuttcchhaarr(_c) cchhaarr _c;

ppuuttcchhaarr iiss aa mmaaccrroo tthhaatt  eexxppaannddss ttoo ppuuttcc(_c, ssttddoouutt).  It writes a
character onto the standard output.

***** Example *****

For an example of this routine, see the entry for getchar.

***** See Also *****

fputc(), putc(), STDIO

***** Diagnostics *****

putchar returns EOF when a write error occurs.

***** Notes *****

Because putchar  is a macro, arguments with  side effects may not
work as expected.
































COHERENT Lexicon                                           Page 1


