C++ if Statement with bool constant

Description

C++ if Statement with bool constant

#include <iostream> 
  
using namespace std; 
  
int main(int argc, const char * argv[]) 
{ 
        if (true) 
        { /*from ww w . ja v a2 s .co m*/
                cout << "Print This!"; 
        } 
        return 0; 
}



PreviousNext

Related