wap to find largest among three numbers using all types of functions.
Answers
Answered by
0
Answer
temp = a > b ? a : b
result = temp>c ? c : temp
this is the logic
Explanation:
Similar questions