{{keywords>wiki library source code example reference}} ===== stdout ===== Pointer to a type FILE ===== C Sourcecode Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ int main ( void ) { int c=66; fputc(c, stdout); return 0; } ==== output ==== ./stdout.c B