write a character to the console
#include <conio.h> int putch( int c );
The putch() function writes the character specified by the argument c to the console.
the character written
errno, getch(), getche(), kbhit(), ungetch()
#include <conio.h>
#include <stdio.h>
void main()
{
FILE *fp;
int c;
fp = fopen( "file", "r" );
if ( fp != NULL ) {
while( (c = fgetc( fp )) != EOF )
putch( c );
}
fclose( fp );
}
WATCOM
All (except Netware, DOS/PM)