I am struck while reading 2D array in C++ that we can declare in
Such a way:
month=4;. // Initialize value of mont variable
void display(float [ ] [month] ); //declare
I want to know why the function doesn't need the size of fist dimension ?
I ask this question on many forums but only get the way how to declare array like this . But never find the answer of why?