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