The program needs to:
Store the first 9 lines into a struct array at position 0
Store the following 9 lines into a struct array at position 1
Continue in that pattern^ until the end of the file
The issue I am having is with including whitespaces
An example file would look like this:
Line 2
Line 3```
An example struct would look like:
```struct example
{
char One[50];
char Two[50];
char Three[50];
}```