[求助]win-tc 无法编译 一闪而过(急)
我用 win-tc1.9.1 编译下面这段代码时,不能显示结果..而是一闪而过 请前辈帮忙解决..谢谢..!
#include "stdio.h"
main()
{
char str[100];
FILE *fp;
if((fp=fopen("d:\file.txt","r"))==NULL) 我将此句该成 if((fp=fopen("file.dat","r"))==NULL)没有一闪而过,但显示乱码
{
printf("cannot open this file.\n");
exit(0);
}
while(fgets(str,100,fp)!=NULL)
printf("%s",str);
fclose(fp);
getchar();
}