+ 1
How to find maximum of three numbers using conditional operator in one statement using C language?
3 Respostas
+ 3
+ 4
Divyanshu Kumar
It's very easy
Maybe you can try it yourself 😊
0
void main()
{
int a,b,c;
a=12;b=5;c=32;
if(a>b) {
if(a>c) {
putchar(a);
}
putchar(b)
}else
putchar(c)
}