0
max of four numbers in c++ using function
hackerrank probleme
2 Answers
+ 1
Plz describe your problem better.
+ 1
Define a function that returns:
max(max(a, b), max(c, d));
You might need to include the algorithm header, but I've seen it work without it.