View Single Post
Old May 10th, 2006, 7:43 PM   #4
NightShade01
Programmer
 
Join Date: Oct 2005
Posts: 52
Rep Power: 4 NightShade01 is on a distinguished road
thanks for the tips guys i did through it into the compiler and i started working on fixing the syntax.....sry about all the errors i'm just learning this language. I did have another question though. I wrote:

int[][] seats = new int[5][7]; and i get errors

however:

int [] [] seats;
seats = new int[5][7];

compiles fine....why?
i thought that they are the same statement just written two different ways?
NightShade01 is offline   Reply With Quote