I have a little question - when I define array like this:
int arr[10];
and I do something like that:
func(arr);
I know that the arr is sent by reference and not by value , but , does it says the array is in the heap? no, of course not. so how it's works in the stack? thanks ahead!