A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/cplusplus/cpp_if_statement.htm below:

C++ If Statement

C++ if statement

An if statement consists of a boolean expression followed by one or more statements.

Syntax

The syntax of an if statement in C++ is −

if(boolean_expression) {
   // statement(s) will execute if the boolean expression is true
}

If the boolean expression evaluates to true, then the block of code inside the if statement will be executed. If boolean expression evaluates to false, then the first set of code after the end of the if statement (after the closing curly brace) will be executed.

Flow Diagram Example
#include <iostream>
using namespace std;
 
int main () {
   // local variable declaration:
   int a = 10;
 
   // check the boolean condition
   if( a < 20 ) {
      // if condition is true then print the following
      cout << "a is less than 20;" << endl;
   }
   cout << "value of a is : " << a << endl;
 
   return 0;
}

When the above code is compiled and executed, it produces the following result −

a is less than 20;
value of a is : 10

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4