摘要:
#include <iostream>using namespace std;void main(){ int a[3] = {1,2,3}; int b[3] = {-1,-2,-3}; int const c[3] = {100,200, 300}; int x, y, z; const int ci = 100; //常量指针数组 int const *Arrayofcp[3] = {&b... 阅读全文
posted @ 2011-02-25 17:25 alexkk2011 阅读(295) 评论(0) 推荐(0) 编辑