(Solved):
Given the following code, what is the final value of \( i \) ? int \( \mathrm{i}, \mathrm{j} \); f ...
Given the following code, what is the final value of \( i \) ? int \( \mathrm{i}, \mathrm{j} \); for \( (i=0 ; i<4 ; i++) \) \{ for \( (j=0 ; j<3 ; j++) \) \{ if(i==2) break; \} \}