(1)
Rewrite the following using ternary operator:
if(nj>n2)
r = true;
else
r = false;
Answers
Answered by
0
Answer:
Here, condition is true (will return 1). Since the condition is true, statements inside if will be executed. {} after if represents the ...
Similar questions