In this program, we will discuss a simple concept of the C program to Find smallest of three numbers using ternary operator
In this topic, we are going learn how to find the smallest number from given three numbers using ternary operator in C programming language.
In this program , we will find the smallest number from given three numbers using ternary operator in C programming language
Program 1
//Find smallest of three using ternary #include <stdio.h> #include <stdlib.h> int main() { int num1,num2,num3; //declare three variables printf("Enter three numbers: "); //Ask input from the user scanf("%d %d %d",&num1,&num2,&num3); //Reading the input from user for numbers int result=num3<(num1<num2?num1:num2)?num3:((num1<num2)? num1:num2); //find smallest number of three using ternary operator printf("\n The Smallest number is: %d ",result); //display result on the screen getch(); return 0; }
When the above code is executed, it produces the following result
Enter three numbers: 12 34 67 The smallest number is: 12
In this program , we will find the smallest number from given three numbers using ternary operator in C programming language
Program 2
//Find smallest of three using ternary #include <stdio.h> #include <stdlib.h> int main() { int num1,num2,num3; //declare three variables printf("Enter three numbers: "); //Ask input from the user scanf("%d %d %d",&num1,&num2,&num3); //Reading the input from user for numbers int temp=((num1<num2)? num1:num2); int result=num3<temp?num3:temp; //find smallest number of three using ternary operator printf("\n The Smallest number is: %d ",result); //display result on the screen getch(); return 0; }
When the above code is executed, it produces the following result
Enter three numbers: 768 234 596 The smallest number is: 234
In the above, all programs, Three variables num1,num2,num3 are compared one by one using ternary operator to find smallest one.
Suggested for you
Nested if statements in C language
Similar post
largest number of three number in C
largest number of three number in C++
largest number of three number in Python
largest number of three number in C using function
largest number of three number in C++ using function
largest number of three number in Python using function
largest number of three number in Java using method
Smallest number of three numbers in Java language
Smallest number of three numbers in C language
Smallest number of three numbers in C++ language
Smallest number of three numbers in Python language
Smallest number of three numbers using method in Java language
Smallest number of three numbers using function in C language
Smallest number of three numbers using function in C++ language
Smallest number of three numbers using function in Python language
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…
Python code to Calculate sum of odd and even in a list In this tutorial,…
How to find reverse number using method In this article, we will discuss the concept…
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…