#array
Read more stories on Hashnode
Articles with this tag
数组 (Array) 数组是固定大小的连续内存块,在编译时确定大小。它们在内存中是静态分配的,意味着大小不可改变。 声明和初始化数组 int arr[5] = {1, 2, 3, 4, 5};...