Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有以下表达
int *(*table())[30];
在我看来,table() 返回一个指向指针数组开头的值,每个元素都指向一个整数。
你怎么看?
谢谢。
你是对的。根据cdecl
将表声明为函数,返回指向 int 指针数组 30 的指针
另请参阅顺时针/螺旋 或左右规则以帮助理解 C 表达式(有关支持后者的一些观点,请参阅下面的评论)。