原创 C语言 文件操作

2009-7-25 00:54 1435 4 4 分类: 软件与OS

#include <stdio.h>


#include <stdlib.h>



int main(void)
{
  FILE *fp;
  char ch;
  if((fp=fopen("d:\\C_exercise\\example\\c1.txt","w"))==NULL)
    {
    printf("Cannot open this file.\n");
    exit(1);
    }


while((ch=getchar())!='\n')
fputc(ch,fp);


fclose(fp);


return 0;
}

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
我要评论
0
4
关闭 站长推荐上一条 /3 下一条