Lorem ipsum dolor sit amet, consectetur adipiscing elit. Test link
Posts

6.1 Conditional branching - if

1 min read
Image result for C++ if statementif statement

An if statement contains a Boolean expression and block of statements enclosed within braces.

Structure of if statement
if (boolean expression )
/* if expression is true */
statements... ; /* Execute statements */


If the Boolean expression is true then statement block is executed otherwise (if false) program directly goes to next statement without executing Statement block.

if...else statement
If statement block with else statement is known as as if...else statement. Else portion is non-compulsory.

Structure of if...else

if(condition)
{
&nbsp statements...
}
else
{
&nbsp statements...
}

If the condition is true, then compiler will execute the if block of statements, if false then else block of statements will be executed.

Nested if...else statement
We can use multiple if-else for one inside other this is called as Nested if-else.

Structure of Nested if...else

if(condition)
{
&nbsp statements...
}
else if
{
&nbsp statements...
}
else
{
&nbsp statements...
}

                      6.2 Conditional selection - switch          NEXT >>

You may like these posts

  • References are another variable type of C++ that act as an alias or short name to another variable. A reference variable acts just like the original variable it is referencin…
  • The predefined object cerr is an instance of iostream class. The cerr object is said to be attached to the standard error device, which is also a display screen but the objec…
  • In Array we can store data of one type only, but structure is a variable that gives facility of storing data of different data type in one variable. Structures are variab…
  • In most program environments, the standard input by default is the keyboard, and the C++ stream object defined to access it is cin. cin is an instance of iostream class For f…
  • On most program environments, the standard output by default is the screen, and the C++ stream object defined to access it is cout. cout is an instance of iostream class …
  • C++ allows us to create own own data types. enumerated type is the simplest method for doing so. An enumerated type is a data type where every possible value is defined as a s…

Post a Comment