c 陣列長度的相關文章
How do I determine the size of my array in C? - Stack Overflow

How do I determine the size of my array in C? - Stack Overflow

瀏覽:541
日期:2024-07-08
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 ......看更多