数组指针By wangyanan / June 12, 2024 指向数组的指针 int arr[10] = {0}; int (*p) [10] = &arr; int* arr2[10] = {NULL};