【发布时间】:2015-07-10 07:34:08
【问题描述】:
在我的代码中,我在尝试编译时不断收到这些错误
/tmp/ccshIakV.o:在函数`main'中:
project2.c:(.text+0x370): undefined reference to `print'
collect2: 错误:ld 返回 1 个退出状态
这是我的代码
int main(void)
{
double a = 0;
double b = 0;
double c = 0;
double d = 0;
double e = 0;
double f = 0;
double g = 0;
double h = 0;
double i = 0;
char command = '\0';
printf("\n Welcome\n");
printf(" Aquapodz Stress Analysis Program\n");
printf(" ==================================\n");
while (command != 'x');
{
printf("\n\n(a), (b), or (c), enter trial data for vendor.\n(f)ail-rate, (m)ean stress, (s)ummary, e(x)it\n");
printf("Please enter a command");
scanf("%c", &command);
if (command == 'a')
{
printf("Please enter stress values (GPa) for this trial.");
scanf("%lf", &a);
scanf("%lf", &b);
scanf("%lf", &c);
}
else if (command == 'b')
{
printf("Please enter stress values (GPa) for this trial.");
scanf("%lf", &d);
scanf("%lf", &e);
scanf("%lf", &f);
}
else if (command == 'c')
{
printf("Please enter stress values (GPa) for this trial.");
scanf("%lf", &g);
scanf("%lf", &h);
scanf("%lf", &i);
}
else if (command == 'f')
{
printf("Average failure rate:\nAzuview:%f\nBublon:%f\nCryztal:%f\n", a+b+c, d+e+f, g+h+i);
}
else if (command == 'm')
{
printf("Average mean stress:\nAzuview:%f\nBublon:%f\nCryztal:%f\n", a+b+c/3, d+e+f/3, g+h+i/3);
}
else if (command == 's')
{
print("Total (pass / fail) so far:\nAzuview:%f(%f/0)\nBublon:%f(%f/0) \nCryztal:%f(%f/0)\n", a+b+c, a+b+c, d+e+f, d+e+f, g+h+i, g+h+i);
}
else if (command == 'x')
{
}
else
{
printf("Invalid Command! Please Try Again :)");
}
}
printf("Goodbye, Please Come Again!");
return 0;
}
我以前从未遇到过这些错误。
【问题讨论】:
-
你已经在你的实际代码中包含了头文件?
-
一般来说,“未定义的引用”错误消息通常意味着您正在使用没有定义的函数或变量。例如,您包含一个声明函数 foo 的头文件,但在编译时忘记链接实现 foo 的源/目标文件。
-
"未定义的对
print的引用" - 那么,您将print更改为printf怎么样?编译器再明显不过了!!! -
是的,我只是忘记在帖子中添加它
-
@barakmanos 编译器在这里根本不是“显而易见的”,而是在没有适当警告设置的情况下完全错过了错误。隐式函数声明是一个指示有问题的,但它们是允许的。这里的错误信息来自链接器,所以甚至没有行号。 -> 使用编译器警告,它们会很明显。
标签: c compiler-errors