Even Odd Program Using Ternary Operator In C Programming ternary operator or conditional operator is an alternative of if else statement in c programming. syntax of ternary operator is given as ( condition ) ? expression 1 : expression 2 if the mentioned condition is true then expression 1 will be execute otherwise expression 2 will […]