0

これは、単純なテキスト ファイルを読み取り、出力を構造体に格納しようとしているプログラムです。私が現在直面している問題は、動作しない 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

編集:タイプミスを修正しました。

4

1 に答える 1

4

また、関数 feof が返すものを確認する必要があります。

戻る :

ストリームに関連付けられたファイル終了インジケータが設定されている場合、0 以外の値が返されます。それ以外の場合は、0 が返されます。

あなたは書くべきです

while(feof(fp)==0)
于 2013-03-28T09:57:11.850 に答える