Contact Us || Privacy Policy || About Us |
|
Control Statement in C++A statement is an instruction given to the computer to perform specific action. In a Statement can be either a single statement or a Compound statement.A Single statement specifies a single action and always terminated by a semicolon ;. A Compound statement also known as a blok, is a set of statements that are grouped as a compound statement and always ecclosed within curly braces {}. Types of Control Statment.There are three control statement that is.
Conditional Statement in C++Conditional Statement also known as selection statements. Conditional Statement are used to make decisions based on a given condition. Types of Conditional Statement
Iteration or Loop Statement in C++The statement that cause a set of statements to be executed repeatedly either for a specific number ot times or until some condition is satisfied are known as iteration statements. Types of Loop Statement
Jump Statement in C++Jump statement are used to alter the flow of control unconditionally .that is jump statements transfer the program control within a function unconditionally . Jump Statement
Next TopicIdentifiers in C++
|