摘要:
#include<iostream>using namespace std;int main(){ int i, *p= &i; i=5; cout<<i<<endl; //5 //cout<<p<<endl; 0012FF44 //cout<<*p++<<endl; 答案5 //cout<<*(p++)<<endl; 答案5 //cout<<(*p)++<<endl; 答案5 //cout<<((*p)++)<<endl; 答案5 阅读全文
posted @ 2012-09-30 11:00
myth_HG
阅读(163)
评论(0)
推荐(0)