Answer:
goto statements are used to control the flow of execution and the program can directly jump to the desired location without using any break statements.
Here is the code using goto and break :
j = -3;
i = 0;
start_loop:
switch (j + 2) {
case 3:
case 2:
j--;
if (j > 0)
goto end_loop;
break;
case 0:
j += 2;
if (j > 0)
goto end_loop;
break;
default:
j = 0;
break;
}
if (j <= 0) {
j = 3 - i;
if (j <= 0)
goto start_loop;
}
end_loop: