Answers for "Find the max element along with it's index in c++"

C++
0

Find the max element along with it's index in c++

int main()
{
    int num, arr[10];
    int x, y, a, b;

    cin >> num;

    for (int i = 0; i < num; i++)
    {
        cin >> arr[i];
    }

    cout << "Max element Index: " << max_element(arr, arr + num) - arr;

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

Code answers related to "Find the max element along with it's index in c++"

Browse Popular Code Answers by Language