Programming Tutorials

Comment on Tutorial - for loop in java By Abinaya



Comment Added by : muhammad abdullah

Comment Added at : 2012-10-11 05:27:02

Comment on Tutorial : for loop in java By Abinaya
int m,m2,n,n2;
for( m=0 , m2=0 ; m<r1 , m2<c2 ; m++ , m2++ ){
for( n=0 , n2=0 ; n<c1, n2<r2 ; n++, n2++){
}
}
there is an error in this program kindly find out this error compiler show the comma mistake in this code


View Tutorial