(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-03-01 10:15  CollisionDimension  阅读(99)  评论(0)    收藏  举报