0
Hey whats wrong with my ternary operator plz
2 Answers
+ 2
In this program there is no ternary operator.
Ternary operator look like this
a > b ? a : b;
So you can do like this
return x > y ? x : y;
0
oh lol i put the wrong code it was x > y ? return x : return y but thx