Answers for "find the idex of max element in arr in cpp"

C++
0

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

Code answers related to "find the idex of max element in arr in cpp"

Browse Popular Code Answers by Language