fun(int **p)的使用
Posted 那年月光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
system("pause");
}
以上是关于fun(int **p)的使用的主要内容,如果未能解决你的问题,请参考以下文章
int fun(int x){int p;if(x == 0 || x==1) return p=3;else p = x-fun(x-2);}void main(){printf(“%d “)}(代