Answers for "function get max of array cpp"

C++
10

c++ max of array

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

Max element in an array with the index in c++

int main(int argc, char** argv) {
  int A[4] = {0, 2, 3, 1};
  const int N = sizeof(A) / sizeof(int);

  cout << "Index of max element: "
       << distance(A, max_element(A, A + N))
       << endl;

  return 0;
}
Posted by: Guest on July-08-2021
0

c++ function of find maximum value in an array

*max_element (first_index, last_index);
Posted by: Guest on December-29-2021

Browse Popular Code Answers by Language