gpt4 book ai didi

c - c 中的指针和函数

转载 作者:行者123 更新时间:2023-12-04 08:26:15 24 4
gpt4 key购买 nike

请考虑以下代码

#include<stdio.h>
int fun(); /* function prototype */

int main()
{
int (*p)() = fun;
(*p)();
return 0;
}
int fun()
{
printf("IndiaBix.com\n");
return 0;
}

这里的int(*p)()是什么?是函数、变量还是什么?

最佳答案

流量spiral rule :

                 +------+
| |
| +-+ |
| ^ | |
int ( *p ) ()
^ | | |
| +----+ |
+--------+

Identifier p
is a pointer to..
is a pointer to a function
is a pointer to a function returning int

关于c - c 中的指针和函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18810308/

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