摘要: //1.下面这个例子是计算数组中所有元素的和 //数组与指针的关系,整型是4个字节,a[] == *a, a[i] = *(a+i) #include <stdio.h> #define SIZE 10 int sum (int a[],int n); int main(){ int ar [SIZ 阅读全文
posted @ 2016-03-09 09:50 TheYouth 阅读(540) 评论(0) 推荐(0) 编辑