通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
给出下面程序输出结果是()。
#include<iostream.h> void main() { int *p1; int **p2=&p1; int b=20; p1=&b; cout<<**p2<<endl; }