fscanf简述:
This function is just like scanf, except that the input is read from the stream stream instead of stdin.
从一个流中执行格式化输入,fscanf遇到空格和换行时结束,注意空格时也结束。
这与fgets有区别,fgets遇到空格不结束。
可以用作从文件中获取配置信息;
fprintf():
其作用是格式化输出到一个流/文件中;函数完整形式:
int fprintf(FILE *stream,char *format,[argument])
This function is just like printf, except that the output is written to the stream stream instead of stdout.
向文件中按照格式输入