Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the largest element of a given array of integers

C++ Array: Exercise-1 with Solution

Write a C++ program to find the largest element of a given array of integers.

Pictorial Presentation:

C++ Exercises: Find the largest element of a given array of integers

Sample Solution:

C++ Code :

#include<iostream>
using namespace std;
int find_largest(int nums[], int n) {
  return *max_element(nums, nums + n);
}

int main() {
  int nums[] = {
    5,
    4,
    9,
    12,
    8
  };
  int n = sizeof(nums) / sizeof(nums[0]);
    cout << "Original array:";
    for (int i=0; i < n; i++) 
    cout << nums[i] <<" ";
    
  cout << "\nLargest element of the said array: "<< find_largest(nums, n);
  return 0;
}

Sample Output:

Original array:5 4 9 12 8 
Largest element of the said array: 12

Flowchart:

Flowchart: Find the largest element of a given array of integers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: C++ Array Exercises Home
Next: Write a C++ program to find the largest three elements in an array.

What is the difficulty level of this exercise?