关于C语言的文件
C语言中文件究竟怎样应用?我看了好几本书,怎么也弄不清楚。
例如:我在D盘建立一个test文件夹,再在其内建一个gxp.txt文本文档,
程序如下:
#include"stdio.h"
main()
{
FILE*fp;
char ch;
if((fp=fopen("D:\\test\\gxp.txt","rt"))==NULL)
{ printf("\nCan not open file strike any key exit!");
getch();
exit(1);
}
ch=fgetc(fp);
while(ch!=EOF)
{ putchar(ch);
ch=fgetc(fp);
}
fclose(fp);
}
可是怎么也打不开只是输出 Can not open file strike any key exit
到底 该怎样写啊?C语言,win-tc 能不能打开记事本文档?