how to get the the array size of a built in array c++ code example
Example: c++ get length of array
int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5
int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5