skip to main
|
skip to sidebar
OOP344
2010年2月17日星期三
A simple file copy program
int main(int argc, char* argv[]){
char copy;
FILE* fr=fopen(argv[1],"r");
FILE* fw=fopen(argv[2], "w");
while(fscanf(fr,"c%", ©){
fprintf(fw,"c%", copy);
}
return 0;
}
没有评论:
发表评论
较早的博文
主页
订阅:
博文评论 (Atom)
关注者
博客归档
▼
2010
(7)
▼
二月
(3)
A simple file copy program
pointer to function and flush for input
Integer Array
►
一月
(4)
►
2009
(2)
►
十一月
(1)
►
九月
(1)
我的简介
shun yao zhang
查看我的完整个人资料
没有评论:
发表评论