C Program to search the array element in the array

#include<stdio.h>
void read(int a[50],int n);
void display(int a[50],int n);
int main()
{
    int n,a[50],element;
    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);
    printf("\nEnter the number to be searched\n");
    scanf("%d",&element);
    search(a,n,element);
}

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]);
    }
}

void search(int a[50],int n,int x)
{
    int i,flag=0;
    for(i=0;i<n;i++)
    {
       if(a[i]==x)
       {
           flag=1;
           break;
       }

    }
    if(flag==1)
        printf("Number found in the array\n");
    else
        printf("Number not found in the array\n");
}

Output:

C Program to search the array element in the array

C Program to search the array element in the array

Comments