/* 运行环境 Dev—C++4.9.9.2,英文原版,官网下的。*/
#include <stdio.h>
#include <stdlib.h>
int count,total1,total2,total;
int array1[]={1,1,1,1,1},array2[]={3,3,3,3,3,7};
int main(void)
{
for(count=0;count<7;count++)
{
total1+=array1[count];
total2+=array2[count];
}
printf("%d",total1+total2);
system("PAUSE");
return 0;
}
int array1[]={1,1,1,1,1},array2[]={3,3,3,3,3,7};
等价:
int array1[5]={1,1,1,1,1},array2[6]={3,3,3,3,3,7};
但这样定义的两个数组是挨着存放的
当array1第六次被计算的时候用的是array2的第一个元素值,原因在于他们存在data段中,array1在array2前面,他们挨着存放的,也就是 1 1 1 1 1 3
3 3 3 3 3 7
评论