retagged by
9,690 views

1 Answer

1 votes
1 votes
Conditional branch is happened based on some condition like if condition in C. Transfer of control of the program will depend on the outcome of this condition.

Uncoonditional branching occurs without any condition like goto statement.

Loops like For, while use both of these branching techniques. It employs condition checking(For conditional branching) and once one loop is complete, control is automatically transfered to the start of the loop(Unconditional branching).

Related questions

0 votes
0 votes
1 answer
1