C++ Program to Find Smallest Element in an Array2 min read

In this tutorial, we will learn and write a print the smallest element in an array in C++. To understand the coding, you should have knowledge of the following topics in C++ programming:


1. C++ program to find the smallest element in an array

The program takes user input for the size and the values of elements of an array. Lastly, displays the smallest element present in the array.

The first element in an array is assumed to be the smallest element then iterating the array using for loop, we compare each of the elements present in an array. Whenever the element is found to be smaller then the value is inserted into the smallest variable.

Output:

Enter the size of an array: 5
Enter 5 Array Elements:
23
65
12
19
16

Smallest Element in an array: 12


2. Using Function

The program logic is the same as the above only difference is we will create a separate function to search for the smallest element and return the value from that function.

Enter the size of an array: 5
Enter 5 Array Elements:
3
56
2
98
12

Smallest Element in an array: 2


3. Find Smallest Number in Array using Pointer in C++

If you want to learn about the pointer and how it works then click the link below.

Source code:

Output:

Enter the Size for an Array: 5
Enter 5 Array Elements:
12
45
11
36
30

Smallest Element: 11


MORE

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …
Read More

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …
Read More

Java Program to Find pair of Integers in Array whose sum is given Number

In this tutorial, we will write a program to find a pair of elements from an array whose sum equals a given number in java …
Read More

Program to Print Diamond Alphabet Patterns in C

In this tutorial, we will learn to write a C program to print Diamond patterns using alphabets/characters. However, in this tutorial, we will create a …
Read More

Half Diamond Pattern in C using Alphabets

In this tutorial, we will learn and code the half diamond alphabet patterns in C programming language. However, in this tutorial, we will create a …
Read More

Half Pyramid of Alphabets in C

In this tutorial, we will learn and code alphabet patterns in C programming language specifically the Half pyramid of alphabets in C programming. However, in …
Read More