

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Program to find largest element in an array in C++
In this tutorial, we will be discussing a program to find the largest element in an array.
For this, we will be provided with an array. Our task is to find the largest number from the elements inside the array.
Example
#include <bits/stdc++.h> using namespace std; //finding largest integer int largest(int arr[], int n){ int i; int max = arr[0]; //traversing other elements for (i = 1; i < n; i++) if (arr[i] > max) max = arr[i]; return max; } int main(){ int arr[] = {10, 324, 45, 90, 9808}; int n = sizeof(arr) / sizeof(arr[0]); cout << "Largest in given array is " << largest(arr, n); return 0; }
Output
Largest in given array is 9808
- Related Questions & Answers
- Python Program to find largest element in an array
- Python Program to find the largest element in an array
- C++ Program to Find Largest Element of an Array
- C# Program to find the largest element from an array
- Kth Largest Element in an Array
- C# Program to find the largest element from an array using Lambda Expressions
- Java program to find Largest, Smallest, Second Largest, Second Smallest in an array
- Java program to find the largest number in an array
- Kth Largest Element in an Array in Python
- Recursive program to find an element in an array linearly.
- Java program to find the 3rd largest number in an array
- Java program to find the 2nd largest number in an array
- 8085 Assembly language program to find largest number in an array
- Program to find out the index in an array where the largest element is situated in Python
- PHP program to find the maximum element in an array
Advertisements