Conditional Operator in C

The Conditional Operator in C, also called a Ternary, is used in decision-making. In this C programming language, the conditional or ternary Operator returns the statement depending upon the given expression result. The basic syntax of a Ternary or conditional Operator in C Programming is as shown below: Test_expression ? statement1: statement2 From the above … Read more