gpt4 book ai didi

c - 使用指针时类型不兼容

转载 作者:行者123 更新时间:2023-12-02 15:25:37 24 4
gpt4 key购买 nike

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

typedef struct contact
{
my_string name;
my_string email;
int age;
} contact;

typedef struct contact_array
{
int size;
contact *data;
} contact_array;

void print_contact(contact *to_print)
{
printf("%s (%s) age %i\n", to_print->name.str,
to_print->email.str, to_print->age);
}

int main()
{
int i;
contact_array contacts = { 0, NULL };
for(i = 0; i < contacts.size; i++)
{
print_contact(contacts.data[i]);
}

return 0;
}

我收到以下错误:

error: incompatible type for argument 1 of 'print_contact'
note: expected 'struct contact *' but argument is of type 'contact'.

我已经在别处声明了 my_string 结构,我认为这不是问题所在。我只是不确定如何让打印过程调用和过程声明具有匹配的类型。

最佳答案

您的编译器告诉您将指针类型传递给 print_contact 函数,如下所示:

print_contact(&contacts.data[i]);

关于c - 使用指针时类型不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30591049/

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