摘要:
#include <iostream>using namespace std;void main(){ //int *iPtr = NULL; //iPtr = 5; //编译错误:error C2440: “=”: 无法从“int”转换为“int *” ////*iPtr = 5; // xxx.exe 中的 0x004113e8 处未处理的异常: ////0xC0000005: 写入位置 0x00000000 时发生访问冲突 //cout << iPtr << endl; //int *iPtr2; //*iPtr2 = 3; // Run-Time C 阅读全文
posted @ 2011-02-23 01:26 alexkk2011 阅读(223) 评论(0) 推荐(0)