Reading a File with Multiple Fields
fscanf() can also read records containing multiple fields by supplying to the second argument a series of type specifiers for each field in the record.
For example, the next fscanf() function expects to read two character strings called name and hobby.
fscanf(pRead, "%s%s", name, hobby);
The %s type specifier will read a series of characters until a white space is found, including blank, new line, or tab.