gpt4 book ai didi

c - C中的函数调用

转载 作者:太空狗 更新时间:2023-10-29 15:20:10 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Why does gcc allow arguments to be passed to a function defined to be with no arguments?

代码:

#include <stdio.h>
#include <stdlib.h>

void test_print()
{
printf("test print\n");
}

int main()
{
test_print(1,2);
return 0;
}

虽然 main 中 test_print 的调用者与这个函数的定义有不同数量的参数,代码可以运行得很好,但是如果将其更改为 c++ 版本,则会出现编译错误 "too many arguments to funciton .. ..”。为什么C允许函数的参数不匹配调用,我们什么时候可以使用这种调用方式?以及为什么它在 C++ 中被禁止。

系统ubuntu 11.10
编译器:gcc 4.6.1

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com