我有一个我正在尝试编写的 C 程序,它打算反转文件的行。我在 C 方面仍然很无能(尽管我来自 Java 背景),所以我很可能会在指针等方面犯错误,但我已经尝试随时查阅手册。这在某种程度上是一项任务。
该程序的重点是反转文件的内容,最多 MAX_LINES 个,每行不超过 MAX_CHARS。我想尝试的方法如下:使用 fgets 从文件中读取 80 个字符或直到 EOL,存储该字符串,然后重复该过程,直到达到 EOF 或 MAX_LINES,使用侧面的计数器。之后,我只是将相同的字符串放在不同的数组中,从 second_array[counter] 变为 0。但是,我在将字符串实际放入第一个数组时遇到了问题。这是我到目前为止所拥有的:
1 #include <stdio.h>
2 #include <string.h>
3
4 #define MAX_LINES 100
5 #define MAX_CHAR 80
6
7 int main(int argc, char *argv[])
8 {
9 if(argc != 2)
10 goto out;
11 FILE *fp;
12 char *str[MAX_CHAR];
13 char buffer[MAX_CHAR];
14 char *revstr[MAX_CHAR];
15 int curr_line = 0, i = 0, j =0;
16
17 fp = fopen(argv[1],"r");
18
19 out:
20 if (fp == NULL && argc != 2){
21 printf("File cannot be found or read failed.\n");
22 return -1;
23 }
24
25 /* printf("This part of the program reverses the input text file, up to a maximum of 100 lines and 80 characters per line.\n The reversed file, from the last (or 100th) line to the first, is the following:\n\n"); */
26
27 /* fgets reads one line at a time, until 80 chars, EOL or EOF */
28 while(curr_line < MAX_LINES && ((fgets(buffer, MAX_CHAR, fp)) != NULL)){
29
30 str[i] = buffer;
31 ++j;
32 ++i;
33 }
34
35 for(i = 0; i < 4; ++i)
36 printf("%s \n", str[i]);
37
38
39 printf("END OF PROGRAM RUN.");
40 return 0;
41 }
在同一目录中,我有一个“txt”文件,其中包含以下几行:
is this a test
this is a test
this is not a test
但是,当我编译并运行程序(./a.out txt)时,我得到以下输出:
this is not a test
this is not a test
this is not a test
END OF PROGRAM RUN.
显然这意味着它正在覆盖相同的位置,但我不确定如何纠正这一点(如前所述,指针对我来说仍然很陌生)。谁能澄清这里发生了什么?我需要改用二维数组吗?任何帮助将不胜感激。