C Program to find the smallest number in the array

#include<stdio.h>
void read(int a[50],int n);
void display(int a[50],int n);
int smallest(int a[50],int n);
int main()
{
   int a[50],n,min;
   printf("Enter the size of the array\n");
   scanf("%d",&n);
   printf("Enter the array elements\n");
   read(a,n);
   printf("The array elements are\n");
   display(a,n);
   min=smallest(a,n);
   printf("\nThe largest number in the array is: %d",min);
}
void read(int a[50],int n)
{
    int i;
    for(i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
}
void display(int a[50],int n)
{
    int i;
    for(i=0;i<n;i++)
    {
        printf("%d\t",a[i]);
    }
}
int smallest(int a[50],int n)
{
    int small=a[0],i;
    for(i=1;i<n;i++)
    {
        if(a[i]<small)
        {
            small=a[i];
        }
    }
    return small;
}

Output:
C Program to find the smallest number in the array


Comments