int (*a)[n]在C语言中是什么意思?

2025-03-12 21:15:01
推荐回答(2个)
回答1:

以上是定义了一个有n个整型元素的数组的指针变量a。

回答2:

int (*a)[n]; = int a[](无限)[n]