C++ Program to Find the Smallest Number in an Array

In this article, you will learn and get code to find and print the smallest element (number) from an array in C++. The size and elements of the array must be entered by the user at run-time. Here is the list of approaches used to create the program:

Find the smallest number in an array

To find the smallest element or number in an array in C++ programming, you have to ask the user to enter the size and elements of the array. Now find and print the smallest one as shown in the program given below:

The question is, "Write a program in C++ to find and print the smallest number in an array." Here is its answer:

#include<iostream>
using namespace std;
int main()
{
    int arr[100], tot, i, s;
    cout<<"Enter the Size for Array: ";
    cin>>tot;
    cout<<"Enter "<<tot<<" Array Elements: ";
    for(i=0; i<tot; i++)
        cin>>arr[i];
    s = arr[0];
    for(i=1; i<tot; i++)
    {
        if(s>arr[i])
            s = arr[i];
    }
    cout<<"\nSmallest Number = "<<s;
    cout<<endl;
    return 0;
}

This program was built and runs under the Code::Blocks IDE. Here is its sample run:

C++ program find smallest element in array

Now supply any number, say 5, as the array size, and then enter 5 numbers as the 5 array elements. After supplying all these things, press the ENTER key to find and print the smallest number from the array, as shown in the snapshot given below:

find smallest number in array c++

The following statement:

s = arr[0];

It is supposed that the number at the 0th (very first) index is the smallest number. And then we've compared all the numbers at the remaining indexes one by one with the number at s. If s's value is found to be greater than any number at any index, then we've initialized that number as the new value of s.

The dry run of the above program goes like this:

Using the pointer, find the smallest number in the array

Now, let's make the same program with pointers. The & is known as the address of operator, where * is called as the value at operator.

#include<iostream>
using namespace std;
int main()
{
    int arr[100], tot, i, s, *ptr;
    cout<<"Enter the Size for Array: ";
    cin>>tot;
    cout<<"Enter "<<tot<<" Array Elements: ";
    for(i=0; i<tot; i++)
        cin>>arr[i];
    ptr = &arr[0];
    s = *ptr;
    while(*ptr)
    {
        if(s>(*ptr))
            s = *ptr;
        ptr++;
    }
    cout<<"\nSmallest Number = "<<s;
    cout<<endl;
    return 0;
}

This program produces the same output as the previous program. after executing the following statement:

ptr = &arr[0];

The address of the number present at the 0th index in arr[] gets initialized to ptr. The *ptr indicates the value present at address, which is stored in ptr. And the ptr++ is used to shift to the next index of the same array, arr[].

Find the smallest number in an array using a function

This is the last program on finding the smallest element in an array. This program is created using a user-defined function named findSmallest(). This function takes an array and its size as its arguments. and returns the smallest number from the array (passed as its first argument).

#include<iostream>
using namespace std;
int findSmallest(int [], int);
int main()
{
    int arr[100], tot, i, s;
    cout<<"Enter the Size for Array: ";
    cin>>tot;
    cout<<"Enter "<<tot<<" Array Elements: ";
    for(i=0; i<tot; i++)
        cin>>arr[i];
    s = findSmallest(arr, tot);
    cout<<"\nSmallest Number = "<<s;
    cout<<endl;
    return 0;
}
int findSmallest(int a[], int t)
{
    int s, i;
    s = a[0];
    for(i=1; i<t; i++)
    {
        if(s>a[i])
            s = a[i];
    }
    return s;
}

Here is its sample run with user input, 6 as array size, and 10, 8, 2, 5, 7, and 12 as 6 array elements:

smallest number in array using function c++

The same program in different languages

C++ Quiz


« Previous Program Next Program »


Liked this post? Share it!