Why isn\'t the size of an array sent as a parameter the same as within main?
#include void PrintSize(int p_someArray[10]); int main () {
It's a pointer, that's why it's a common implementation to pass the size of the array as a second parameter to the function