In this C program, we will find maximum of the two numbers using conditional or ternary operator.
Required Knowledge
C program to find maximum of two numbers using conditional operator
#include <stdio.h> int main() { int a, b, maximum; printf("Enter Two Integers\n"); scanf("%d %d", &a, &b); if(a == b){ printf("Both Equal\n"); return 0; } maximum = (a > b) ? a : b; printf("%d is Maximum\n", maximum); return 0; }Output
Enter Two Integers 10 14 14 is Maximum
Related Topics