这是我试图直接从“C 编程语言”第 1.9 节运行的程序。
#include <stdio.h>
#define MAXLINE 1000
int getline(char line[], int maxline);
void copy(char to[], char from[]);
main()
{
int len;
int max;
char line[MAXLINE];
char longest[MAXLINE];
max = 0;
while ((len = getline(line, MAXLINE)) > 0)
if (len > max) {
max = len;
copy(longest, line);
}
if (max > 0)
printf("%s", longest);
return 0;
}
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;
}
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}
这是我尝试使用 Ubuntu 11.10 编译程序时遇到的错误:
cc word.c -o word
word.c:4:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here
word.c:26:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here
make: *** [word] Error 1
只是为了确保书中的印刷没有问题,我引用了本书后面章节练习的这组答案 (http://users.powernet.co.uk/eton/kandr2/krx1。 html),当我尝试从该链接运行练习 18、19、20、21 等时,我得到了类似的错误。当我无法运行程序来查看它们的输出时,真的很难学习。当在一个程序中引入字符数组和函数调用时,这个问题就开始了。我将不胜感激有关此问题的任何建议。