Thinkercnhnyu.blog.chinaunix.net
cnhnyu
全部博文(441)
2014年(1)
2012年(1)
2011年(8)
2010年(16)
2009年(15)
2008年(152)
2007年(178)
2006年(70)
马玉贞
大鬼不动
cynthia
浪花小雨
Bsolar
武峰123
yuan1958
luokaich
anyegong
chinadow
jkjk0010
分类: C/C++
2007-10-17 10:46:28
/* cpc.c use c library to copy file */ #include <stdio.h> #include <errno.h> #define BUF_SIZE 256 int main(int argc, char *argv[]) { FILE *in_file, *out_file; char data[BUF_SIZE]; size_t bytes_in, bytes_out; long len = 0; if ( argc != 3 ) { printf("Usage: %s file1 file2\n", argv[0]); return 1; } if ( (in_file = fopen(argv[1], "rb")) == NULL ) { perror(argv[1]); return 2; } if ( (out_file = fopen(argv[2], "wb")) == NULL ) { perror(argv 阅读(1156) | 评论(0) | 转发(0) | 0 上一篇:windows下三种拷贝文件的代码 下一篇:windows下三种拷贝文件的代码 给主人留下些什么吧!~~ 评论热议 请登录后评论。 登录 注册
上一篇:windows下三种拷贝文件的代码
下一篇:windows下三种拷贝文件的代码
登录 注册