gpt4 book ai didi

函数错误的冲突类型

转载 作者:太空宇宙 更新时间:2023-11-04 05:17:39 24 4
gpt4 key购买 nike

这是我的第一个 C 程序,我不知道为什么会出现以下错误。

#include <stdio.h>
#include <stdlib.h>

typedef struct {
struct ListNode* next;
int content;
} ListNode;

int main() {
//puts("Hello UPC World"); /* prints Hello UPC World */

//ListNode* h = malloc(sizeof(ListNode));
gridinit(3, 5);
//int c = h->content;
//printf("%d",c);

return EXIT_SUCCESS;
}

ListNode* gridinit(int numcolumns, int numrows) {
ListNode* head = malloc(sizeof(ListNode));
head->content = 2;
head->next = NULL;
return head;
}

为什么我会收到错误提示

type conflict in func gridinit()

最佳答案

在结构的顶部定义函数声明

ListNode* gridinit(int numcolumns, int numrows);

typedef struct {
struct ListNode* next;
int content;
} ListNode;

int main() {
//puts("Hello UPC World"); /* prints Hello UPC World */

//ListNode* h = malloc(sizeof(ListNode));
gridinit(3, 5);
//int c = h->content;
//printf("%d",c);

return EXIT_SUCCESS;
}

ListNode* gridinit(int numcolumns, int numrows) {
ListNode* head = malloc(sizeof(ListNode));
head->content = 2;
head->next = NULL;
return head;
}

关于函数错误的冲突类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32330721/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com