标签: c++ c
我想知道int* array[5]和int (*array)[5]之间有什么区别?
int* array[5]
int (*array)[5]
当我尝试访问2D数组时,它们都适用。我甚至可以使用单个int *数组访问它,但必须将row *列相乘,因为它们都在内存中连续保留。