Showing posts with label Conditional Operator Exercises. Show all posts
Showing posts with label Conditional Operator Exercises. Show all posts

Sunday, May 27, 2018

Conditional Operator Exercises

Conditional Operator Exercises

programming exercises and solutions in C

Conditional operator is a ternary operator used to evaluate expression based on some condition. Conditional operator is a replacement of small if...else statements. It takes three operand conditional-expression, true-expression and false-expression It is also known as 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 conditional operator and learn to make its proper use.

As I say always feel free to drop your queries down below in the comments section. I always love to hear from you all.

Required knowledge

Conditional operator, Basic input/output, If statements

List of conditional operators programming exercises

  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.

  6. C Program to Check Whether a Character is Vowel or Consonant using Conditional operator

  7. C Program to Check Character is Alphabet, Digit or Special Character using Conditional operator

  8. C program to check whether a character is Uppercase or Lowercase using Conditional operator

  9. C Program to find smallest among three numbers using Conditional operator

  10. C Program to check whether the given integer is positive,negative or zero using Conditional operator




Instagram