Microsoft Visual C++ Lesson 6: Understanding Relational Operators
Comparing values, especially variables, is more common that performing arithmetic when programming in C++. Therefore, you must have a strong understanding how to use relational operators. This Microsoft Visual Studio C++ video will give you a brief introduction to the C++ relational operators and examples of how they are used.
The six relational operators in C++ are:
Less than (<)
Greater than (>)
Equal (=)
Less than OR Equal (<=)
Greater than OR Equal (>=)
not Equal (!=)
Title:
Microsoft Visual C++ Lesson 6: Understanding Relational Operators