CJCoding With Joseph

Find Index of Maximum Element

The array {4, 9, 2, 15, 7} is given. Print the index (position) of the largest element:

3

The largest value is 15, which sits at index 3. Print the index, not the value.

Expected Output:

3
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.