重複の可能性:
K&RによるCの学習、配列と関数呼び出しを使用して本からプログラムをコンパイルしようとするとエラーが発生する
BrianW.KernighanとDennisM.RitchieによるCプログラミング言語を学びながら、セクション1.9の文字配列の例を試しました。コードは次のとおりです。
/* read a set of text lines and print the longest */
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */
/* declare functions: getline() and copy() */
int getline(char line[], int maxline);
void copy(char to[], char from[]);
/* getline: read a line into array "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'; /* the null character whose value is 0 */
return i;
}
/* copy: copy 'from' into 'to'; assume to is big enough */
/* the return type of copy is "void" -- no value is returned */
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0') /* terminated with a \0 */
++i;
}
/* print the 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;
}
2つの主なエラーがあります。
- エラー:「getline」のタイプが競合しています</ li>
- エラー:「getline」の以前の宣言はここにありました
完全なエラーリストは次のとおりです。
/Users/C/Codes/Ritchie/array_char.c:8: error: conflicting types for ‘getline’
/usr/include/stdio.h:449: error: previous declaration of ‘getline’ was here
/Users/C/Codes/Ritchie/array_char.c:13: error: conflicting types for ‘getline’
/usr/include/stdio.h:449: error: previous declaration of ‘getline’ was here
/Users/C/Codes/Ritchie/array_char.c: In function ‘getline’:
/Users//C/Codes/Ritchie/array_char.c:17: warning: comparison between pointer and integer
/Users/C/Codes/Ritchie/array_char.c:17: warning: comparison with string literal results in unspecified behavior
それは本のコードとまったく同じなので、何がうまくいかなかったのかわかりません。多分最初の関数の宣言:
int getline(char line[], int maxline);
void copy(char to[], char from[]);
問題がありますか?ありがとうございました!