Closed. This question is off-topic. It is not currently accepting answers. Learn more。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
我从“C编程语言”第69页复制粘贴了以下代码:
我准备了一个名为“make file”的简单make文件
但是,当我在linux shell上输入“make”命令时:
有人能帮忙吗?这里只有一个c文件。
谢谢。
你忘记了分号。
应该是:
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
我从“C编程语言”第69页复制粘贴了以下代码:
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */
int getline (char line[], int max)
int strindex (char source[], char searchfor[]);
char pattern[] = "ould"; /* pattern to search for */
/* find all lines matching pattern */
int main()
{
char line[MAXLINE];
int found = 0;
while (getline(line, MAXLINE) > 0)
if (strindex(line, pattern) >= 0)
{
printf("%s", line);
found++;
}
return found;
}
/* getline: get line into s, return length */
int getline(char s[], int lim)
{
int c, i;
i = 0;
while ( (--lim > 0) && (c=getchar() != EOF) && (c != '\n'))
s[i++] = c;
if (c == '\n')
s[i++] = c;
s[i] = '\0';
return i;
}
/* strindex: return index of t in s, -1 if none */
int strindex(char s[], char t[])
{
int i, j, k;
for (i = 0; s[i] != '\0'; i++)
{
for (j=i, k=0; t[k]!='\0' && s[j]==t[k]; j++, k++);
if (k > 0 && t[k] == '\0')
return i;
}
return -1;
}
我准备了一个名为“make file”的简单make文件
mypage69: page69.o
gcc -g -ansi -Wall page69.o -o mypage69
page69.o: page69.c
gcc -c -ansi -Wall page69.c -o page69.o
但是,当我在linux shell上输入“make”命令时:
VirtualBox:~/Desktop/Exercises/Book/mypage69$ make
gcc -c -ansi -Wall page69.c -o page69.o
page69.c: In function ‘getline’:
page69.c:8:1: error: parameter ‘pattern’ is initialized
page69.c:12:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
page69.c:30:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
page69.c:47:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
page69.c:5:5: error: old-style parameter declarations in prototyped function definition
page69.c:60:1: error: expected ‘{’ at end of input
page69.c:60:1: warning: control reaches end of non-void function [-Wreturn-type]
make: *** [page69.o] Error 1
VirtualBox:~/Desktop/Exercises/Book/mypage69$
有人能帮忙吗?这里只有一个c文件。
谢谢。
最佳答案
int getline (char line[], int max)
^
你忘记了分号。
应该是:
int getline (char line[], int max);
关于c - 预期在'。'之前的'=',',',';','asm'或'__attribute__'。 token -论坛中未列出的案件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22879636/
10-09 18:40