摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include <iostream.h>int*pPointer;void SomeFunction();{int nNumber;nNumber =25;//让指针指向nNumber:pPointer =&nNumber;}void main(){SomeFunction(); //为pPointer赋值//为什么这里失败了?为什么没有得到25cout<< 阅读全文
posted @ 2011-01-12 22:03 归无雨 阅读(368) 评论(4) 推荐(0) 编辑