摘要:
#include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; int src_ret; char buf[128]={0}; if(argc != 3) { printf("please input paramester\n"); return -1; ... 阅读全文
摘要:
#include #include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; int src_ret; if(argc<3) { printf("please input parameter"); return -1; } //打开源文件 ... 阅读全文
摘要:
#include #include #include #include int main(int argc,char *argv[]) { int src_ret,des_ret; char buf[128]={0}; int src_fd,des_fd; //判断输入的参数的个数 if(argc<3) { printf("p... 阅读全文
摘要:
#include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; char buf[128]={0}; if(argc != 3) { printf("please input parameter\n"); return -1; } //... 阅读全文