首页 > 代码库 > C 语言文件拷贝
C 语言文件拷贝
相关的方法:
int fputs(const char*s,FILE *stream);int gets(char *s,int size,FILE *stream);
具体代码如下
/***@author cody*@date 2014-08-09*@description copy text file*/#include <stdio.h>#include <stdlib.h>#include <string.h>int main(int argc, char const *argv[]){ FILE *in = fopen("copy.c","r"); FILE *out = fopen("copy_1.c","w+"); if(in == NULL || out == NULL){ perror("open file error"); exit(0); } int size = 20; char buf[20]; while(fgets(buf,20,in) != NULL){ fputs(buf,out); } fclose(in); fclose(out); return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。