摘要: #include<iostream>using namespace std;int main(){ int a=1,b=2,c=3; int *d=b; *d=&c; cout<<*d<<a<<endl; return 0;} C++ primer上的练习,在学校机房用vc6.0写的,总是出现这个错 阅读全文
posted @ 2019-03-11 20:22 Harvest-12580 阅读(1467) 评论(0) 推荐(0)