- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <math.h>
- #include <string.h>
- #include <stdlib.h>
- #define LN 1000 // the numer of the lines of the part file
- #define LEN 76 // length of each read
- int main(int num, const char* file[])
- {
- FILE *fdna, *fpart;
-
- fdna=fopen(file[1], "rb");
- if (fdna==NULL)
- {
- printf("cannot read the file: %s\n", file[1]);
- return 0;
- }
- fpart=fopen(file[2], "ab");
- if(fpart==NULL)
- {
- printf("cannot create the file: %s\n", file[2]);
- return 0;
- }
-
- char cbuf[LEN+2]={0};
-
-
- while(fgets(cbuf, 200, fdna)!=NULL)
- {
- fwrite(cbuf, 1, LEN, fpart);
- fprintf(fpart, "\n");
- }
-
- system("wc -l p1000");
- fclose(fdna);
- fclose(fpart);
-
- system("wc -l p1000");
- return 0;
- }
复制代码 请问各位,为什么第一个system和第二个运行结果不同呢?
大谢!
|
|