Computer Science, asked by abhisekJana, 8 months ago

write a program to read a file character and display is simultaneously on the screen.​

Answers

Answered by 123proo321
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