gpt4 book ai didi

c - getint(int *) 是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-04 05:37:13 24 4
gpt4 key购买 nike

getint (int *);   

我不太确定 getint (int *) 是什么意思?有人可以解释一下吗?

最佳答案

这是声明函数 getint() 的函数原型(prototype)。该函数将指向 int 的指针作为参数。

在对函数进行原型(prototype)设计时,无需指定参数名称。

原型(prototype)缺少返回类型,对于 C 来说默认为 int。然而,省略返回类型违反了最新的 C 标准,因此这样做的代码可能被视为无效。

相当于

getint(int *);

虽然会是

int getint(int * pi); 

关于c - getint(int *) 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31066298/

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