摘要: void test(int **p){}//二级指针接受int main(){ int a = 0; int* p = &a; int** pp = &p; int* arr[10] = { 0 }; test(pp);//二级指针传参 test(&p);//一级指针的地址 test(arr);// 阅读全文
posted @ 2023-05-27 13:12 小蠕虫 阅读(40) 评论(0) 推荐(0)