/* */ Click to Join Live Class with Shankar sir Call 9798158723

Un-conditional


Unconditional control statement is also called a jump statement.When the flow of execution jumps to another part of code without carrying out any conditional test, it is called unconditional statements.

The sequential statement are executed one after the other . However, we can give instruction the control from one statement to some other statement during execution of the program these statements that transfer the control from the one statement to other statement without any condition are called un-conditional branching statements.

Types of Un-conditional branch statement:-

  1. break statement
  2. continue statement
  3. return statement

Tip :"Unconditional branching is when the programmer forces the execution of a program to jump to another part of the program."