自考新教材-p88_4(1)

源程序:

#include <iostream>
using namespace std;

int main()
{
int *p1;
int **p2 = &p1;
int b = 20;
p1 = &b;
cout << **p2 << endl;
system("pause");
return 1;
}

运行结果:

 

posted @ 2020-02-06 14:53  bobo哥  阅读(115)  评论(0)    收藏  举报