List out unconditional control statements.explain the difference among them
Answer»
BREAK It is used to terminate a switch statement. BREAK is a keyword that allows us to jump out of a loop instantly, without waiting to get back to the conditional test. CONTINUE The keywords continue allow us to take the control to the beginning of the loop, by passing the statements inside the loop which have not yet been executed. GOTO STATEMENT ‘c’ supports go to statement to branch unconditionally from one point to another in the program.