摘要: 有下面一段代码,包括了指针数组,二级指针,数组的应用: 1 #include <stdio.h> 2 3 int main() { 4 5 int i[] = {10, 20, 30, 40, 50}; 6 int *pa[] = {i, i+2, i+1, i+4, i+3}; 7 int **p = pa; 8 9 printf("Initial **p = %d\n", **p);10 p++;11 printf("After p++, the **p = %d\n", **p);12 ++*p;13 printf("Afte 阅读全文
posted @ 2013-04-21 10:10 asdfzxcvqwer 阅读(404) 评论(0) 推荐(0) 编辑