Please enable JavaScript.
Coggle requires JavaScript to display documents.
SELECTION STATEMENT - Coggle Diagram
SELECTION STATEMENT
DEFINITION
Selection statement execute a set of intructions only one.Select between one statement or anotherSelection depeding on condition is satisfied.There are three kind of selection structure
A control statement is a statement that determines whether other statement will be executed. It also know as decision makin statement. in these statement one group of statement depending on the result of decisions. The result may be in the form of two Expressions in TRUE or FALSE
These are 3 types of control statement in C
1) Sequence structure ( straight line paths)
2) Selection structure ( one or many branches ) such as if, if-else, nested if, if-if-else, if-else-if and switch-case-break.
3) Repetition(Loop) e repetition of a set of activities such as for,while and do-while)
-
-
-
-
-
-
-
-