这是我的程序,我正在使用它来读取一个简单的文本文件并将输出存储在一个结构中。我目前面临的问题是在它不起作用的while循环上。文件句柄似乎读取了文件。此外,输入文件是使用带有给定文本的简单 Windows 记事本创建的——这可能是个问题吗?
#include<process.h>
#include<stdio.h>
#include<conio.h>
#include<string.h>
struct studyCentre {
char stdCode[10], stdName[40], regName[40], coord[20], prgin[20], address[35], email[40], webs[45];
int ph;
} std;
int flag=0;
void main() {
FILE *fp;
fp = fopen("studyCentre.txt", "r+");
if (fp==NULL) {
printf("No file found");
exit(0);
}
while(feof(fp)!=0) {
//while(!fp.EOF()) {
fscanf(fp, "%s%s%s%s%s%s%s%s%d", std.stdCode, std.stdName, std.regName, std.coord, std.prgin, std.address, std.email, std.webs, &std.ph);
printf("\n Study Center Name :: %s \n Regional Centre Name :: %s \n Coordinator Name = %s \n Program incharge Name :: %s Address %s \n Email :: %s \n Website :: %s \n Phone :: %d", std.stdName, std.regName, std.coord, std.prgin, std.address, std.email, std.webs, &std.ph);
flag=1;
}
if (flag==0) {
printf ("No record found");
}
fclose(fp);
}
输出
No record found
这是我的文本文件中的文本。
111
a
b
c
d
e
f
g
h
122
编辑:更正了一个错字。