Example A: length
is some integer variable
int values[length][2];
This array will not have all the elements inside as zeros.
Example B:
int values[10][2];
This one will be all set to zeros.
My main question is how can I make the first one be initialized as zeros?
But, I would like if someone could explain why is the behavior different?