C++指针的指针

#include <iostream>
using namespace std;
void main()
{
 int *p,**pp;
 int n = 100;
 p = &n;
 pp = &p;
 cout << *p << "  " << **pp << endl;//输出 100   100
 int tem;
 cin >> tem;

}

posted @ 2013-06-12 20:54  Predator  阅读(133)  评论(0编辑  收藏  举报