摘要: 在说指向指针的指针之前,不得不说指向变量的指针。先看如下示例:1. 指向整型指针先看如下示例:View Code 1#include<iostream>2usingnamespacestd;34intmain()5{6inta=5;7int*p=&a;8cout<<"a="<<a<<endl9<<"&a="<<&a<<endl10<<"*p="<<*p<<endl11<<" 阅读全文
posted @ 2011-05-12 22:09 realname201 阅读(48712) 评论(13) 推荐(27) 编辑