在C语言中,数组初始化赋值的方法有两种:
int arr[5] = {1, 2, 3, 4, 5};
int arr[5]; for(int i = 0; i < 5; i++) { arr[i] = i + 1; }