forked from DHEERAJHARODE/Hacktoberfest2024-Open-source-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FuntionsandTernary.c
31 lines (25 loc) · 972 Bytes
/
FuntionsandTernary.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//A basic program of Finding the maximum of the entered numbers
//1)Using Functions- using funchions always reduces the execution time( max_of_four) is the function used here
//2)Using ternary Operator- where three( so why it is called as ternary) operands will be present
//syntax of Ternary operator is - variable = Expression1 ? Expression2 : Expression3
#include <stdio.h>
int max_of_four(int num1,int num2 , int num3 , int num4)
{//using ternary operator
int max1=(num1>num2)?num1:num2;
int max2 = (num3>num4)?num3:num4;
return (max1>max2)?max1:max2;
}
int main() {
int num1,num2,num3,num4;
printf("Enter number1: ");
scanf("%d", &num1);
printf("Enter number2: ");
scanf("%d", &num2);
printf("Enter number3: ");
scanf("%d", &num3);
printf("Enter number4: ");
scanf("%d", &num4);
int ans = max_of_four(num1,num2,num3,num4);
printf("The maximum of all the entered num is :%d", ans);
return 0;
}