Posts

Showing posts from February, 2022

Conditional Operator in C (Ternary Operator in C)

Image
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                 ...