+ 1
what is the output of this code
cout<<((a>b)?((a>c)?a:c):((b>c)?b:c)) if a=54, b=78 c=46
3 Answers
+ 4
78 btw
+ 3
Here is the example
https://code.sololearn.com/cMYohc7QuTvU/?ref=app
+ 2
Use the playground to get the answer
cout<<((a>b)?((a>c)?a:c):((b>c)?b:c)) if a=54, b=78 c=46