Hi all,
i am having problem with this code
class abc{
public static void main(
String args[]){
int i=0;
int []a={3,6};
a[i]=i=9;
System.out.println(i+""+a[0]+""+a[1]);
}
}
as the assignment operator works from right to left ,this shud give arrayout of bound error.But it runs smoothly!!