摘要: //6-17 #include using namespace std; int main() { int m=9; int *p=&m; cout using namespace std; int fn1(){ int n; int *p=new int (5); n=*p; delete p; return n; } int main() { ... 阅读全文
posted @ 2018-05-23 23:52 tacore 阅读(90) 评论(0) 推荐(0) 编辑