The if Statement - C++ Statement

C++ examples for Statement:if

Description

The if Statement

Demo Code

#include <iostream> 
  
using namespace std; 
  
int main(int argc, const char * argv[]) 
{ 
        if (true) 
        { /*from www  .  j  a  v  a  2 s . c  om*/
                cout << "Print This!"; 
        } 
        return 0; 
}

Result


Related Tutorials