vc中怎样读取文件 一、 CStdioFile 二、 FILE* f = fopen("file name", "mode"); char buff[size]; fread(buff, size, 1, f); fclose(f); 三、 //用MFC读文...