三种定义方式:
int arr1[5]; int arr2[5] = {1, 2, 3, 4, 5}; int arr[] = {1, 2, 3, 4, 5, 6, 7};
数组名的用法:
数组名是一个常量,不可以进行修改,arr = 10,这是错误的