fscanf()函数的功能是从文件中按格式读取一个或多个数据;
例如文件中有一行数据,
22 3.34 hello
则使用 fscanf(fp, "%d%f%s", &a, &f, str) 可一次读取整型、浮点、字符串三个数据;
此函数位于C标准库头文件<stdio.h>中;
示例;
测试文件如下;
代码;
void CFiletest1View::OnDraw(CDC* pDC)
{
CFiletest1Doc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// TODO: add draw code for native data here
int a = 0;
float f = 0;
char str[100] = "";
CString str1;
int d=0;
float f2=0;
FILE* fp = fopen("test1.txt", "r");
for(int i=0; i<3