In this article, we shall go through a basic c++ program to check whether a given integer is odd or even using the ternary operator.
For those who don't know about the ternary operator, here an explanation:
The ternary operator is an operator that exists in some programming languages including C++ and PHP, which takes three operands rather than the typical one or two that most operators use. It provides a way to shorten a simple if else block.
Example of a ternary operator in this case if else condition: