Hai friends in java we declare the array as
" int a[][]=new int[10][10]; "
where "a" is the name of variable and size of 10 by10.
But actually it a syntax for declaration of object in java,and now the doubt is,is int a class here?
if not is there any other way to declare array?