无法从C编程语言第二版第29页编译示例代码

时间:2018-09-06 19:00:32

标签: c

无法编译第2版C编程语言第29页上的代码。

我在代码中将“ getline”更改为“ GetLine”以使其正常工作。

我们如何做才能在不更改程序的情况下进行编译?

作者如何编译代码?

代码如下:

 #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 into 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;
 }

1 个答案:

答案 0 :(得分:4)

问题在于,getline从小写开始就变成了实际的POSIX C function,因此该名称不能在包含<std*头的POSIX兼容程序中使用。

由于C区分大小写,因此您将其重命名为GetLine的决议可以避免此问题。