Computer Science, asked by shabirs7154, 29 days ago

Predict the output . int a=15, b=40 int m=(a>b )? ++a:--b;

Answers

Answered by debasish2cse
0

Answer:

39

Explanation:

a>b condition is false so the third part will be executed.

--b which will be 39

Similar questions