关于文件
斑竹能给一个文件打开,读取,输出的大体结构吗?
#include <stdio.h>
#include <stdlib.h>
int main()
{
char str[]="nihao!";
FILE *fp;
if((fp=fopen("e:\\test.txt","w"))==NULL)
{
printf("Can not open the file!");
exit(-1);
}
fprintf(fp,"%s",str);
fclose(fp);
return 0;
}