objective c - Sizeof C array with integers (in Obj-C) - Stack Overflow
經安全檢測,此網站為安全網站,請放心前往原始網址!
objective c - Sizeof C array with integers (in Obj-C) - Stack Overflow
If what you want is the length of the array, you can do sizeof(arr) / sizeof(arr[0])
which will give you the size of the entire array divided by the size ...