- 1
textfile loop in c
Hey everyone! How to loop over a text file using do-while? Thanks in advance!
2 Antworten
+ 2
0. Open the file for read
1. While not end of file do the following...
2. Read from file
3. Process data
4. Loop to step 1
5. Close the file
+ 1
Thanks Bro. I already solved the problem by putting FILE at global. But thanks BTW, much appreciated, still helpful for future codes! 😄