C语言中如何获取数组长度

在C语言中,要获取数组的长度,可以使用以下方法:

方法一:使用sizeof运算符

#include 

int main() {
   
    int arr[] = {
   1, 2, 3, 4<

你可能感兴趣的:(c语言,算法,数据结构,C#)