Table of Contents

stdout

 Pointer to a type FILE
 

C Sourcecode Example

#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
 
int main ( void ) 
{
int c=66;
 
fputc(c, stdout);
return 0;
 
}

output

  ./stdout.c
  B