Which statement will be executed after \"continue\" or \"break\" ?
for(int i = 0; i < count; ++i) { // statement1
For continue, innerloop is executed with new i,j values of i,j+1
For break, innerloop is executed with new i,j values of i+1,0
ofcourse if boundary conditions are satisfied