【发布时间】:2015-08-28 13:46:47
【问题描述】:
在C编程中声明int[]是什么意思?就像在这段代码中
int findPivot(int[], int, int);
【问题讨论】:
-
在给定的代码中,它是一个
int*,一个指向int的指针。 -
这是一个
int的数组。 The Definitive C Book Guide and List -
int[]- int 数组,例如指向整数数组的指针。
标签: c function coding-style int