2.3 control statements ( Jumping control structures (or) Jumps in Loops )
4) Jumping control structures (or) Jumps in Loops: - Jumping control statements is also known as Unconditional control statements . Jumping control statements are the control statements that transfer the program control from one part to another part directly, without checking any condition. They unconditionally jump to a specified location in the program. There are 4 types of jumping statements. a) goto statement b) break statement c) continue statement d) return statement a) goto statement: - The goto statement is a jumping control statement which is u...