Write a program to find smallest of three numbers using if else if statement.
I you know the answer only answer it or aless I will report it
Answers
Answer:
Program Explanation
Get three inputs num1, num2 and num3 from user using scanf statements.
Check whether num1 is smaller than num2 and num3 using if statement, if it is true print num1 is smallest using printf statement.
Else, num2 or num3 is smallest.
So check whether num2 is smaller than num3 using elseif statement.
if num2 is greater, then print num2 is smallest using printf statement.
Else, print num3 is smallest using printf statement.
Related Programs
C Program to calculate discount for purchase above 5000
C Program to find greatest among two numbers
C Program to find smallest among two numbers
C Program to find whether the given number is odd or even number
C Program to find whether the difference between two numbers is even or odd
C Program to find whether the given number is 3 digit number or not
C Program to find greatest among three numbers
C Program to find whether the given number is divisible by 3
C Program to find whether the given year is leap year or not
C Program to find whether the last digit of given number is divisible by 3
C Program to Arithmetic Calculator using switch case Statements
C Program to grade calculation system
C Program to find the whether the last digit of given two numbers are equal or not
C Program to calculate different discount for different Bill amount
C Program to check whether ith bit in a number N is set or not
C Program to check odd or even using bitwise operator
Explanation:
le kar liya ab bol