数组指针

指向数组的指针

int arr[10] = {0};
int (*p) [10] = &arr;
int* arr2[10] = {NULL};

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top