C++ examples for Statement:if
The if Statement
#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; }