问答详情
源自:6-2 数组的遍历

i<20,为什么输出结果是这个0 1 2 3 4 5 6 7 8 9 439647792 2055904829 1 0 1440000356 32548 0 0 1300142160 32766

#include <stdio.h>

int main()

{

    int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

    //补全代码实现对数组arr的遍历

    //可以采用你自己喜欢的循环结果

  int i;

  for(i=0;i<20;i++)

  {

      printf("%d\n",arr[i]);

  }

    return 0;

}


提问者:蒙奇D蕾姆 2019-06-16 14:20

个回答

  • 纵流沙
    2019-06-25 12:00:07

    数组越界

  • 蒙奇D蕾姆
    2019-06-16 14:21:01

    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    439647792
    2055904829
    1
    0
    1440000356
    32548
    0
    0
    1300142160
    32766