How to find the size of an integer array in C.
Any method available without traversing the whole array once, to find out the size of the array.
|
|
If the array is a global, static, or automatic variable ( If it is a dynamically allocated array ( |
||||
|
|
|
If array is static allocated:
if array is dynamic allocated(heap):
where variable size is a dimension of the arr. |
||||
|
|
Should work. |
|||||||||||||||||
|