Answers for "max element in c++"

C++
8

c++ max of array

cout << " max element is: " << *max_element(array , array + n) << endl;
Posted by: Guest on May-22-2020
4

max element in array c++ stl

*max_element (first_index, last_index);
ex:- for an array arr of size n
*max_element(arr, arr + n);
Posted by: Guest on May-21-2020
0

max_element c++

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

// Output: 10
Posted by: Guest on February-17-2021
1

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;
}
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language