Answers for "how do i acces an arrays sizre"

C
20

size of an array c

int a[20];
int length;
length = sizeof(a) / sizeof(int);
Posted by: Guest on October-25-2020
1

can't find lenght

it's written length not lenght
Posted by: Guest on August-13-2020

Code answers related to "C"

Browse Popular Code Answers by Language