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
Accountancy,
5 hours ago
English,
5 hours ago
Math,
9 hours ago
Computer Science,
7 months ago
English,
7 months ago
English,
7 months ago