众生皆苦,唯有自渡。
#include <iostream>using namespace std;void fun(int **p){ cout << p[0][0] << endl;}void main(){ int a[] = {1,2,3,4,5}; int *p = a; int **q = &p; fun(q); system("pause");}
posted on 2017-09-02 18:40 那年月光 阅读(693) 评论(0) 编辑 收藏 举报