要确定静态分配的数组的长度,可以使用sizeof
运算符:
#include <stdio.h>
int main(void) {
int myArray[] = { 1, 2, 3 }; /* alternative */
int length = sizeof(myArray) / sizeof(int); /* 2 */
printf("%d", length);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266712.html