C++ if statement with else Statements

Description

C++ if statement with else Statements

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



PreviousNext

Related