<c语言 fscanf函数使用-百科-春风百科
> 百科 > 列表
c语言 fscanf函数使用
时间:2024-12-23 16:16:07
答案

没打看懂你说的什么意思, 只是感觉你写的有个地方有问题,你在往文件中写的时候fprintf(f1,"%d\n",temp);是每个字后面都一个回车, 而在读的时候又按照fscanf(f1,"%d",&temp); 这种没有回车的形式读的 ,当然会出问题了, 我帮着改了一下, 你看下行不...

#include

#include

void main()

{

int i;

char temp;

FILE *f1; // source file (bmp)

if((f1=fopen("write.hex","w"))==NULL)

{

printf("f1 error\n");

exit(0);

}

for (i=0;i<8;i++)

{

temp = i;

fprintf(f1,"%d",temp);

}

fclose(f1);

if((f1=fopen("write.hex","r"))==NULL)

{

printf("f1 error\n");

exit(0);

}

for (i=0;i<100;i++)

fscanf(f1,"%d",&temp);

fclose(f1);

}

推荐
© 2024 春风百科