Programming Reference/Librarys
Question & Answer
Q&A is closed
int fputchar( int c );
The fputchar() function writes the character specified by the argument c to the output stream stdout. This function is identical to the putchar() function.
#include <stdio.h> int main( void ) { FILE *fp; int c; fp = fopen( "file.txt", "r" ); if( fp != NULL ) { c = fgetc( fp ); while( c != EOF ) { fputchar( c ); c = fgetc( fp ); } fclose( fp ); } }