Conditional Operators

The conditional operator is a ternary operator used to evaluate an expression based on some condition. The conditional operator is a replacement of small if...else statements. It takes three operand conditional-expressiontrue-expression and false-expression It is also known as a ternary operator, inline if, ternary if etc.
Proper use of conditional operator can make your code short, clean and more readable. In this programming exercise, we will focus on the conditional operator and learn to make its proper use.






 Here Is Some Exrecise.
  1. Write a C program to find maximum between two numbers using conditional operator.
  2. Write a C program to find maximum between three numbers using conditional operator.
  3. Write a C program to check whether a number is even or odd using conditional operator.
  4. Write a C program to check whether year is leap year or not using conditional operator.
  5. Write a C program to check whether character is an alphabet or not using conditional operator.

No comments

Powered by Blogger.