C 语言不做数组边界检查但是可以通过 sizeof()返回数组(非指针)的字节长度;可以这样算 :int a[ xx ];//xx 随意正整数 int shu_zu_len= sizeof(a)/sizeof(int);