Computer Science, asked by aishini7, 12 days ago

(Using temporary operator calculate the maximum of 2 numbers .)

Please solve this above question >>​

Answers

Answered by IIMRPRIYANSHUII
0

Explanation:

std::max in C++

It compares the two numbers passed in its arguments and returns the larger of the two, and if both are equal, then it returns the first one.

It can also compare the two numbers using a binary function, which is pre-defined by the user, and then passed as argument in std::max().

Similar questions