我正在通过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
一个不同的名字吗?
答案 0 :(得分:2)
正如@Olaf评论的那样,getline()
是标准的POSIX,
K&amp; R第二版是ansi 89标准。
只需在ansi模式下编译,以防止与POSIX库发生冲突:
gcc -ansi source.c
编辑: GodBot Link
答案 1 :(得分:-2)
此方法通过不包含有问题的标头来避免您的问题。相反,它会复制本地实现中所需的所有声明 这是一个非常糟糕的主意,因为这些函数的声明可能会在您不知情的情况下发生变化,在这种情况下您的代码将传递或接收错误的输入
#define MAXLINE 1000 /* maximum input line size */
int getline(char line[], int maxline);
void copy(char to[], char from[]);
int printf(const char *format, ...);
int getchar(void);
/* print longest input line */
int 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())!=-1 && 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;
}
〜