plz answer it's urgent and don't answer rubish
its from class 10 icse java
Attachments:
![](https://hi-static.z-dn.net/files/d09/bf1012214fe6d931630f852e6b484b3e.jpg)
Answers
Answered by
3
Answer:
Biggest Of Three Numbers Using Conditional operator/Ternary Operator in C
# include <stdio.h>
void main()
{
int a, b, c, big;
printf("Enter three numbers :");
scanf("%d %d %d", &a,&b, &c);
big = a >b? (a >c ? a: c): (b > c? b:c);
printf("\nThe biggest number is : %d", big)
hope it is helpful to you
Similar questions