c++ max element code example

Example 1: max element in vector c++

auto max = *max_element(vector.begin(), vector.end());

Example 2: c++ max of array

cout << " max element is: " << *max_element(array , array + n) << endl;

Example 3: max c++

// max example
#include <iostream>     // std::cout
#include <algorithm>    // std::max

int main () {
  std::cout << "max(1,2)==" << std::max(1,2) << '\n';
  std::cout << "max(2,1)==" << std::max(2,1) << '\n';
  std::cout << "max('a','z')==" << std::max('a','z') << '\n';
  std::cout << "max(3.14,2.73)==" << std::max(3.14,2.73) << '\n';
  return 0;
}

Example 4: max_element c++

int arr[] = {1,4,2,10};
int n = 4; //size of array
cout<<*max_element(arr,arr+n);

// Output: 10

Tags:

Cpp Example