Skip to content

CodeAndCourse

CodeAndCourse
  • Tutorial
  • Programming
    • C
    • C++

if statement

WAP to calculate the factorial of the given number

March 31, 2022April 26, 2021

Write a program to calculate the factorial of the given number Output Enter any number: 4Factorial of 4 is 24. Behind the scene 4*3*2*1 = 24

WAP in C to calculate the roots of quadratic equation and their nature using if else

September 1, 2021March 23, 2020

Write a program in C to calculate the roots of the quadratic equation and the nature of roots using if-else.

The nature of the roots of an equation is defined as it’s nature of containing real solutions or not.

Read more

C program to check even or odd via if-else

March 31, 2022March 23, 2020

Write a program in C to check whether the entered number is even or odd using the if-else statement.

Also, check even-odd using switch case and ternary operator or conditional operator.

A number is even if it is divisible by 2.

Read more

WAP in C to check whether the entered year is leap year or not using else if

September 1, 2021March 23, 2020

Write a program in C to check whether the entered year is a leap year or not using nested else if. You may also want …

Read more

WAP in C to check whether the entered year is leap year or not using nested if

September 1, 2021March 23, 2020

Write a program in C to check whether the entered year is a leap year or not using nested if statement. You may also want …

Read more

Post navigation
Newer posts
← Previous Page1 … Page4 Page5

Ads

Ads

  • Privacy Policy
© 2022 Code And Course