Tagged Questions
1
vote
8answers
1k views
C malloc/free + fgets performance
As I loop through lines in file A, I am parsing the line and putting each string (char*) into a char**.
At the end of a line, I then run a procedure that consists of opening file B, using fgets, ...