2016年1月3日

摘要: 数组与指针阅读如下代码,为何出错。 1 int main() { 2 char a[] = { "I am a bad boy" }; 3 char * pA = new char[ sizeof( a ) ]; 4 pA = a; 5 6 ... 阅读全文

posted @ 2016-01-03 22:36 凌庸 阅读(597) 评论(0) 推荐(0) 编辑