*max_element in c++
// C++ program to demonstrate the use of std::max
// C++ program to demonstrate the use of std::max
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
// Comparing ASCII values of a and b
cout << std::max('a','b') << "\n";
// Returns the first one if both the numbers
// are same
cout << std::max(7,7);
return 0;
}
// C++ program to demonstrate the use of std::max_element
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int v[] = { 'a', 'c', 'k', 'd', 'e', 'f', 'h' };
// Finding the maximum value between the first and the
// fourth element
int* i1;
i1 = std::max_element(v, v + 4);
cout << char(*i1) << "\n";
return 0;
}