码迷,mamicode.com
首页 > 编程语言 > 详细

C语言:文件操作

时间:2015-09-06 12:28:07      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

以附加方式打开文件,输入数据,关闭文件。

#include<stdio.h>
#include<stdlib.h>
int main()
{
        FILE *fp = NULL;
        fp = fopen("test.txt","a+");
        if(fp == NULL)
        {
                printf("cannot open file");
                return -1;
        }
        char c[]="22.33,42";
        char d[] = {2,3,.,1,4,,,4,1};
        fprintf(fp, "%s\n",c);
        fprintf(fp,"%s\n",d);
        fclose(fp);
        fp = NULL;
        return 0;

}

 

C语言:文件操作

标签:

原文地址:http://www.cnblogs.com/juaner767/p/4784896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!