I need to read data from a flat file [find below] into a linked list. Each line is a record and each record needs to be read into a different node. After I open the file using fopen(), I have the following problem:
1) How do I move from the first line of the file to the second when Im reading the data in the file?
The flat file is organized in the following manner:
username, password, access
username2, password2, access2
username3, password3, access3
...
...
...