methodtest.c:(.text+0x47): 对 `pritnf' 的未定义引用

发布于 2024-10-12 23:10:12 字数 534 浏览 2 评论 0原文

所以我第一次尝试在 c 中使用方法,当我编译时,我得到这个作为输出,

gcc -o methodtest methodtest.o
methodtest.o: In function `main':
methodtest.c:(.text+0x47): undefined reference to `pritnf'
collect2: ld returned 1 exit status
make: *** [methodtest] Error 1

代码看起来像这样,

void main(void)
{
  int num, num2, num3;
  num = 3;
  num2 = 2;
  num3 = 1;
  int ans = addem(num, num2, num3);
  pritnf("%d\n", ans);
}

int addem(int num, int num2, int num3)
{
  return(num+num2+num3);
}

为什么我会收到这个错误或其他错误?

So im trying to work with methods for the first time in c and when i compile i get this as an output

gcc -o methodtest methodtest.o
methodtest.o: In function `main':
methodtest.c:(.text+0x47): undefined reference to `pritnf'
collect2: ld returned 1 exit status
make: *** [methodtest] Error 1

the code looks like this

void main(void)
{
  int num, num2, num3;
  num = 3;
  num2 = 2;
  num3 = 1;
  int ans = addem(num, num2, num3);
  pritnf("%d\n", ans);
}

int addem(int num, int num2, int num3)
{
  return(num+num2+num3);
}

why why am i getting this error or whatever it is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一直在等你来 2024-10-19 23:10:12

看起来像一个拼写错误:

pritnf 应该是 printf

Looks like a typo:

pritnf should be printf

鹊巢 2024-10-19 23:10:12

除了 printf 拼写错误之外,您不能像这样在 main 中间分配变量。在 C 中,所有变量都必须分配在作用域的开头(直接在“{”之后)。

也许您已将编译器设置为将代码编译为 C++?

Apart from the printf typo, you can't allocate variables in the middle of main like that. In C, all variables must be allocated at the beginning of the scope (directly after the "{" ).

Though perhaps you have set the compiler to compile the code as C++?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文