声明: int a[6];
声明时初始化 :允许不给数组的数量
int b[] = {5, 12, 11}; is equivalent to int b[3] = {5, 12, 11};
函数里的数组: