#include void main() { FILE *fp; int c; fp = fopen( "file", "r" ); if( fp != NULL ) { while( (c = getc( fp )) != EOF ) putchar(c); fclose( fp ); } }