摘要: 指针数组就是存储指针的数组,数组指针就是指向数组的存储。 使用实例如下: #include<stdio.h> void main() { //数组指针的使用 int s[3][4] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } }; in 阅读全文
posted @ 2016-03-04 15:59 张杨 阅读(353) 评论(0) 推荐(0) 编辑