Find size of array without using sizeof

前端 未结 6 1802
陌清茗
陌清茗 2020-12-03 03:48

I was searching for a way to find the size of an array in C without using sizeof and I found the following code:

int main ()
{
    int arr[100];         


        
6条回答
提交回复
热议问题