摘要: /*this is verson_1*/#include <stdio.h>#define PAGELEN 10#define LINELEN 80void do_more(FILE *);int see_more();int main(int argc, char *argv[]){ FILE *fp; if(argc == 1) { do_more(stdin); } else { while(--argc) if((fp = fopen(*++argv, "r")) != NULL) { do_more(fp); fclose(fp); } else .. 阅读全文
posted @ 2013-03-17 23:07 Auris 阅读(262) 评论(0) 推荐(1) 编辑
摘要: 今天开始编写Linux下的程序,show the code !!!! 阅读全文
posted @ 2013-03-13 23:08 Auris 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>#include <memory.h>#define BUFSIZE 1024//int a[100];//void Process_bar(int LeftLen, int FileLen); this function is created to show the process bar // but It not does well ,I decide design it in somedays // hope some people could give more ... 阅读全文
posted @ 2013-01-24 21:33 Auris 阅读(517) 评论(0) 推荐(0) 编辑