List of all conditional programs in c language

This c article explains various conditional statements in C programming Language with an example. I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

  1. C Program to check whether an integer entered by the user is odd or even
  2. C Program to find the largest number among three number.
  3. C Program to Find the Largest Number using Conditional Operator.
  4. C Program to find the Largest among Three Variables using Nested if.
  5. C program to check leap year using conditional Operator.
  6. C program to check alphabets using conditional operator.
  7. C program to check number is positive, negative or zero.
  8. C program to check uppercase or lowercase alphabets.
  9. C program to check entered character vowel or consonant.
  10. C program to check whether a character is alphabet, digit or special character.
  11. C program to print day name of week.
  12. C program to accept two integers and check whether they are equal or not.
  13. C program to detrermine a candidate’s age is eligible for casting the vote or not.
  14. C program to find the eligibility of admission for an engineering course based on the criteria.
  15. C program to calculate the total marks, percentage and division of student.
  16. C program to enter month number and print number of days in month.
  17. C program to count total number of notes in entered amount.
  18. C program to check whether a triangle can be formed by the given value for the angles.

Leave a Comment