Conditional Operator in C (Ternary Operator in C)
Conditional Operator in C (Ternary Operator in C) Introduction Conditional Operator can be used as alternative for if else Conditional statement . Lets Understand how if else statement works. if( Condition ) { Block to be executed if Condition becomes True ; } else { Block to be executed ...