Control flow statements are used to check condition in program and to decide whether they should be executed or not.Following are control flow statements:
1.IF Statement: This statement is used to check condition of expression whether it is true or not,if true then it executes the expression,and if it is false then it simply ignores it.
2.IF....Else : This statement is similar to if,only when first condition is false,it jumps to expression under Else statement and execute it.
3.While : This is used to execute a block of code repeatedly,until condition becomes zero.
4.do...While: This is used to execute code at least once,before condition is checked.
5.for Statement: This is used to execute code for certain number of times where a variable is initialized and set as counter outside the loop.
6. Switch Statement: This is used to deal with more than one cases on which different statements are executed.
7.Break and Continue: Break statement is used to break any loop such as while,do while and for and continue statement is used to continue loop.