write a program to read a file character and display is simultaneously on the screen.
Answers
Answered by
1
int fgetc(FILE * stream); The function accepts pointer to FILE type, source stream to read. On each successful read it return character (ASCII value) read from stream and advance read position to next character.
Similar questions