This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int fscanf(FILE *f, const char *format,...);
fscanf() is the same as scanf() but the input comes from file f instead of a string.
The number of data arguments read, if any input was converted. If not, it returns EOF.
fgets(), and