当前位置: 代码迷 >> C语言 >> 关于文件
  详细解决方案

关于文件

热度:366   发布时间:2005-01-16 17:45:00.0
关于文件
斑竹能给一个文件打开,读取,输出的大体结构吗?
搜索更多相关的解决方案: 文件  

----------------解决方案--------------------------------------------------------
#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;
}
----------------解决方案--------------------------------------------------------
  相关解决方案