Give output of the code snippet : int i,j,n=1; for(i=0;i<n;i++) for(j=0;j<n;j++) if(i==j) System.out.println(i+","+j);
Answers
Answered by
0
Answer:
0,0
Will be answer as the loop iterate only once
Pls Mark as Brainlist
Similar questions