嗨我正在为我的系统软件(汇编程序,加载程序等)课程做C文件I / O的测试程序,我的问题是最后一行读了两遍,我记得我的老师告诉我这是由于一些我错过了一些轻微的语法或错误,我忘记了它是什么,请看看并快速帮助我。
程序
#include<stdio.h>
#include<stdlib.h>
//read from source.txt and write to output.txt
int main()
{
FILE *f1=fopen("source.txt","r");
FILE *f2=fopen("output.txt","w");
int address;
char label[20],opcode[20];
while(!feof(f1))//feof returns 1 if end of file
{
fscanf(f1,"%s\t%s\t%d",label,opcode,&address);
printf("%s\t%s\t%d\n",label,opcode,address);
fprintf(f2,"%s\t%s\t%d\n",label,opcode,address);
}
int check=fclose(f1);
int check2=fclose(f2);
printf("close status %d %d",check,check2);
return 0;
}
的Source.txt
NULL LDA 4000
ALPHA STA 5000
BETA ADD 4020// I stopped right here, DID NOT PRESS 'ENTER' , so that ain’t the issue
output.txt的
NULL LDA 4000
ALPHA STA 5000
BETA ADD 4020
BETA ADD 4020
//最后一行两次
终端输出
NULL LDA 4000
ALPHA STA 5000
BETA ADD 4020
BETA ADD 4020
//最后一行两次
我不希望最后一行打印或写两次,我做错了什么,帮忙!
答案 0 :(得分:2)
您可以使用fscanf
的返回值,该值应该等于成功扫描的项目数:
while(fscanf(f1,"%s\t%s\t%d",label,opcode,&address) == 3) {
printf("%s\t%s\t%d\n",label,opcode,address);
fprintf(f2,"%s\t%s\t%d\n",label,opcode,address);
}