Find the smallest amongst 3 numbers in C++ [duplicate]
If possible, I recommend using C++11 or newer which allows you to compute the desired result w/out implementing your own function (std::min). As already pointed out in one of the comments, you can do T minimum(std::min({x, y, z})); or T minimum = std::min({x, y, z}); which stores the minimum of the variables x, y and … Read more