gpt4 book ai didi

c - 为什么我在 C 中看到重定义错误?

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:06 25 4
gpt4 key购买 nike

以下是我的代码,我试图在 Visual Studio 中运行它。

#include <stdio.h>
#include <conio.h>
int main()
{
//int i;
//char j = 'g',k= 'c';
struct book
{
char name[10];
char author[10];
int callno;
};
struct book b1 = {"Basic", "there", 550};
display ("Basic", "Basic", 550);
printf("Press any key to coninute..");
getch();
return 0;
}

void display(char *s, char *t, int n)
{
printf("%s %s %d \n", s, t, n);
}

在输入函数左大括号的行给出了重新定义的错误。

最佳答案

您在声明它之前调用了display,在这种情况下,编译器假定返回类型是int,但您的返回类型是void .

在使用之前声明函数:

void display(char *s, char *t, int n);
int main() {
// ...

另请注意,您将其声明为接收 char*,但将字符串文字传递给它 (const char*) 要么更改声明,要么更改参数,例如:

void display(const char *s, const char *t, int n);
int main()
{
// snip
display ("Basic", "Basic", 550);
//snap
}

void display(const char *s, const char *t, int n)
{
printf("%s %s %d \n", s, t, n);
}

关于c - 为什么我在 C 中看到重定义错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10259939/

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