【发布时间】:2011-04-19 16:07:53
【问题描述】:
我想反转输入文件的内容并显示反转的内容,但我没有得到它;我想我犯了一个逻辑错误。
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>
int main() {
char* c = malloc(10);
char* c1 = malloc(10);
char ch, arg1[100], arg2[100];
int i, count = 0;
FILE *fp, *fq;
printf("Name of the file:");
scanf("%s", arg1);
fp = fopen(arg1, "w+");
if (!fp) {
perror("Failed to open file");
return errno;
}
printf("\t\t\t%s\n\n", arg1);
printf("\t\tInput the text into the file\n");
printf("\t\tPress Ctrl+d to the stop\n");
while ((*c=getchar()) != EOF) {
fwrite(c, 1, sizeof(c), fp);
count++;
}
printf("\n\n");
fclose(fp);
fp = fopen(arg1, "w+");
printf("Name of the output file:");
scanf("%s", arg2);
printf("Reversing the contents of the file.......\n");
fq = fopen(arg2, "w+");
printf("\t\t%s\n\n", arg2);
for (i = 1; i <= count; i++) {
fseek(fp, -(i + 1), SEEK_END)
fwrite(c1, 1, sizeof(c1), fq);
}
printf("Done....Opening the file\n");
rewind(fq);
for (i = 0; i <= count; i++) {
ch = getc(fp);
putc(ch, stdout);
}
fclose(fp);
fclose(fq);
return 0;
}
【问题讨论】:
-
你得到什么输出?你试图做什么来解决这个问题?你怎么知道它不起作用?
-
如果文件的内容很小,您可能希望将所有内容加载到内存中,然后将其反转。
fseek(...)和rewind()在我看来效率极低。 -
我已经在我的 linux 上编译了程序,我无法得到反转内容的输出
-
我同意你的观点,但我这样做只是为了解决问题