getint (int *);
我不确定
getint (int *)
是什么意思?有人能解释一下吗? 最佳答案
这是一个声明函数getint()
的函数原型。该函数以指向int
的指针作为参数。
在对函数进行原型设计时,不需要指定参数的名称。
原型缺少一个返回类型,对于C,该类型默认为int
。但是,省略返回类型违反了最新的C标准,因此这样做的代码可能被视为无效。
相当于
getint(int *);
尽管会是
int getint(int * pi);
关于c - getint(int *)是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31066298/