[求助]请问下这个{号问题怎么解决
void displayal(void) { FILE* fp;//数据文件指针 record temp ;//存放临时数据 system("cls"); if((fp=fopen(FILE_NAME,"rb"))==NULL)//打开数据文件 { printf("暂无记录\n"); exit(0); }
PRINT_FORM;//打印表头 while(!feof(fp))//读取数据 { fread(&temp,sizeof(record),1,fp); printf("%s\t%s\t%s\t%s\t%s\t%d\n",temp.name,temp.IDnumber,temp.clas,temp.sex,temp.job,temp.age); }
fclose(fp);//关闭文件 return; } 上面是我的代码,我在vs的vc++控制台应用程序里输入这个代码运行后就出现了下面的问题 f:\tempvs\gh\gh\gh.cpp(18): fatal error C1075: 与左侧的 大括号“{”(位于“gh.cpp(17)”)匹配之前遇到文件结束 请教各位高手怎么解决这个问题啊