Computer Science, asked by sagnikgamer90, 8 days ago

rewrite in ternary operator if(a>b) c=a; else c=b;
plss reply fast​

Answers

Answered by sayankar565
0

Answer:

(a>b)?c=a:c = b ;

Explanation:

this is the solution for ternary

Similar questions