If statement is a conditional branching statement. In conditional branching statement a condition is evaluated, if it is evaluate true a group of statement is executed.
Switch statements simulate the use of multiple if statement.The switch statement is probably the single most syntactically awkward and error-prone feature of the C language.
The goto statement is used to alter the normal sequence of program execution by transferring control to some other part of the program unconditionally.
The while statement is also a looping statement. The while loop evaluates the test expression before every loop, so it can execute zero times if the condition is initially false.
0 Comments
If you have any doubts,please let me know