There is a possibility to shorten an `if - else` condition using the ternary operator, as indicated below:
```c
// variable = (condition) ? expressionTrue : expressionFalse;
int time = 20;
(time < 18) ? printf("Good day.") : printf("Good evening.");
```
**:: Reference ::** [C Short Hand If ... Else (Ternary Operator) (w3schools.com)](https://www.w3schools.com/c/c_conditions_short_hand.php)