09 2017 档案

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 那年月光 阅读(715) 评论(0) 推荐(0)