Print A File From C

[Solved] Print A File From C | Vb - Code Explorer | yomemimo.com
Question : how to print a file c

Answered by : thegreenoak

 c = fgetc(fptr); while (c != EOF) { printf ("%c", c); c = fgetc(fptr); } 

Source : | Last Update : Sun, 31 May 20

Answers related to print a file from c

Code Explorer Popular Question For Vb