C++ Relational Operators - Tutorialspoint
www.tutorialspoint.com › cplusplus › cpp_relationalTry the following example to understand all the relational operators available in C++. Copy and paste the following C++ program in test.cpp file and compile and run this program. Live Demo. #include <iostream> using namespace std; main() { int a = 21; int b = 10; int c ; if( a == b ) { cout << "Line 1 - a is equal to b" << endl ; } else { cout << "Line 1 - a is not equal to b" << endl ; } if( a < b ) { cout << "Line 2 - a is less than b" << endl ; } else { cout << "Line 2 - a is not less ...