c - Get length of an Array using a pointer - Stack Overflow
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] = 0; testInt[1] = 1; testInt[2] = 1; int ......