 |
How do I determine the size of my array in C? - Stack Overflow
executive summary: int a[17]; n = sizeof(a)/sizeof(a[0]);. To determine the size of
your array in bytes, you can use the sizeof operator: int a[17]; int n = sizeof(a);. On
my ...
stackoverflow.com |
 |