Is there a way to get the length of an Array when I only know a pointer pointing to the Array?
See the following example
int testInt[3]; testInt[0] =
You cannot and you should not attempt deduce array length using pointer arithmetic
if in C++ use vector class