fun(int **p)的使用
摘要:#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
阅读全文
posted @ 2017-09-02 18:40
众生皆苦,唯有自渡。
posted @ 2017-09-02 18:40