gpt4 book ai didi

c - K&R 错误 : conflicting method definition

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:16 33 4
gpt4 key购买 nike

我正在通过 K&R(第 2 版)来学习 C,因为我一直在尝试获得低级语言的基础以帮助我的编程,也因为我想了解 C。这本书绝对很棒;但是,他们在第 29 页(第 1.9 节字符数组)中提供的程序无法编译。这是代码

#include <stdio.h>
#define MAXLINE 1000 /* maximum input line size */

int getline(char line[], int maxline);
void copy(char to[], char from[]);

/* print longest input line */
main()
{
int len; /* current line length */
int max; /* maximum length seen so far */
char line[MAXLINE]; /* current input line */
char longest[MAXLINE]; /* longest line saved here */

max = 0;
while ((len = getline(line, MAXLINE)) > 0)
if (len > max) {
max = len;
copy(longest, line);
}
if (max > 0) /* there was a line */
printf("%s", longest);
return 0;
}

/* getline: read a line int s, return length */
int getline(char s[], int lim)
{
int c, i;

for (i = 0; i<lim-1 && (c=getchar())!=EOF && c!='\n'; ++i)
s[i] = c;
if (c == '\n') {
s[i] = c;
++i;
}
s[i] = '\0';
return i;
}

/* copy: copy 'from' into 'to'; assume to is big enough */
void copy(char to[], char from[])
{
int i;

i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}

当我运行 cc longest_line.c(我就是这样调用它的)时,我得到一个错误,指出 getline 的定义存在冲突,因为它已经在 stdio 中定义了.h。我的问题是,我该如何解决这个问题/我能否在不给 getline 一个不同的名称的情况下解决这个问题?

最佳答案

正如@Olaf 评论的那样,getline() 是标准的 POSIX,

K&R第二版是ansi 89标准。

只需在 ansi 模式下编译,以防止与 POSIX 库冲突:

gcc -ansi source.c

编辑: GodBot Link

关于c - K&R 错误 : conflicting method definition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37970047/

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