hi all,
i'm jst struggling with a fundermental problem with the addressing method of a 2-D array. it's very simple problem but i've jst been unable to find the solution ..
the problem is...

im having a 2-D array of integer..
int[][] myArray = new int[5][10];
and i need to refer one whole row at once... say to refer the 2nd whole row...
how could i do it?
it's giving an error when i use " myArray[1] " to refer the 2nd row.
could you pls help me to solve this problem...
thanking in advance.
bye