当前位置: 代码迷 >> C语言 >> 文件的读取的问题
  详细解决方案

文件的读取的问题

热度:173   发布时间:2007-03-25 11:26:50.0
文件的读取的问题

没有输出任何东西
有个file.txt的文件 内面的内容如下:
c:\test
c:\123.t

#include <stdio.h>
#include <stdlib.h>
#define NUM 100
main()
{ FILE *file;

int i;

char str[NUM],temp;

file=fopen(".\file.txt","r"); /* 打开文件 */

while(feof(file)!=0)

{ for(i=0;;i++)

{temp=fgetc(file);

if(temp!='\n')

str[i]=temp;

else
{str[i+1]='\0';
break;}
}

puts(str);

}
fclose(file);

getch();

}

搜索更多相关的解决方案: 文件  

----------------解决方案--------------------------------------------------------
  相关解决方案