返回首页
进站必读
4.10 数组的初始化
定义一个整形数组并进行初始化:
int arr[5] = {1, 2, 3, 4, 5};
定义一个字符数组并进行初始化:
char arr[32] = "hello akaedu";