该程序只需一个带有ASCII行的文件,将其放入链表列表中,然后将反转列表打印成相同ASCII格式的新文件。
我的结构代码:
typedef struct Node{
char info[15];
struct Node *ptr;
};
我在Main上遇到以下错误。大部分都要做我宣布新节点头的地方......那个语法出了什么问题?:
Errors
strrev.c:28: error: ‘Node’ undeclared (first use in this function)
strrev.c:28: error: (Each undeclared identifier is reported only once
strrev.c:28: error: for each function it appears in.)
strrev.c:28: error: ‘head’ undeclared (first use in this function)
strrev.c:34: warning: passing argument 1 of ‘strcpy’ from incompatible pointer type
/usr/include/string.h:128: note: expected ‘char * __restrict__’ but argument is of type ‘char **’
主要代码:
int main(int argc, char *argv[])
{
if (argc != 3) {
fprintf(stderr, "usage: intrev <input file> <output file>\n");
exit(1);
}
FILE *fp = fopen(argv[1], "r");
assert(fp != NULL);
Node *head = malloc(sizeof(Node));
head->ptr=NULL;
char str[15];
while (fgets(str, 15, fp) != NULL){
struct Node *currNode = malloc(sizeof(Node));
strcpy(currNode->info, str);
currNode->ptr = head;
head=currNode;
}
char *outfile = argv[2];
FILE *outfilestr = fopen(outfile, "w");
assert(fp != NULL);
while (head->ptr != NULL){
fprintf(outfilestr, "%s\n", head->info);
head = head->ptr;
}
fclose(fp);
fclose(outfilestr);
return 0;
}
答案 0 :(得分:5)
结构的typedef
语法错误。您需要在结构定义之后放置typedef
名称:
typedef struct Node /* <- structure name */
{
/* ... */
} Node; /* <- typedef name */
可以为结构和类型使用相同的名称,因为它们都存在于不同的名称空间中。
答案 1 :(得分:2)
您需要先Node
typedef
typedef struct Node Node;
typedef struct Node{
char *info[15];
Node *ptr;
};
或者在一个
中完成typedef struct Node{
char *info[15];
struct Node *ptr;
} Node;