Fgets编译错误
我卡在似乎是一个初学者的编译错误:
我的简单程序:
#include <stdlib.h>
#include <stdio.h>
#include "Tiles_Circular_Linked_List.h"
#define MAX_LINE_LENGTH 128;
int main(int argc, char **argv) {
struct node *head_tail;
FILE *file;
/*char filename[] = "/home/student/Desktop/Studies/C/testing_fodder/tiles";*/
argv++; /*go to second character-array argument*/
file = fopen(*argv, "r");
char *curr_line;
fgets(curr_line, MAX_LINE_LENGTH, file);
return 0;
}
我尝试使用这个命令来编译它:
gcc -g -Wall -ansi launch_tiles.c -o tiles_prog
并得到这些错误:
launch_tiles.c:在函数'main'中:
launch_tiles.c:17:19:error:expected')'before';' 代币
launch_tiles.c:17:19:错误:函数'fgets'的参数太少/usr/include/stdio.h:628:14:note:here here
launch_tiles.c:9:8:warning:变量'file'设置但未使用[-Wunused-but-set-variable]
launch_tiles.c:8:15:警告:未使用的变量'head_tail'[-Wunused-variable]
我对错误感兴趣,而不是警告。
我可以计算出我传递给fgets
三个参数,但不明白我在哪里错过了括号,所以问题是什么?
谢谢!
更改
#define MAX_LINE_LENGTH 128;
至
#define MAX_LINE_LENGTH 128
(没有;
)。 容易犯错。
C预处理器执行非常简单的文本替换,因此使用错误定义的宏,您最终会得到
fgets(curr_line, 128;, file);
这显然是一个语法错误。
链接地址: http://www.djcxy.com/p/73601.html