Question:How would you parse the contents of a multi-line text file formatted using a fixed pattern without preloading its contents into a variable and then processing them in memory?
A Using file() to break it up into an array
B Using sscanf()
C Using fscanf()
D Using fgets()
E Using fnmatch()
+ AnswerC
+ Explanation
+ Report