16. Write a program to find the larger of two numbers
using ternary operator.
Answers
Answered by
0
Answer:
* C program to find largest among two numbers using ternary operator */ #include<stdio.h> #include<conio.h> void main() { int a,b,larg; // Variable declaration printf("Enter two number\n"); scanf("%d %d",&a,&b); larg = a>b? ...
Enter two number 23 56 largest number is : 56.
Similar questions
Math,
12 days ago
Math,
24 days ago
Computer Science,
8 months ago
English,
8 months ago
English,
8 months ago