Write a program to find whether a given element is present in the given array

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int ar[100];
  int r,t,i,f;
  for(i=0;i<100;i++)
  {
    ar[i]=0;
  }
  printf("\n Enter the range:(less than 100) ");
  scanf("%d",&r);
  printf("\n Enter the elements of the array:");
  for(i=0;i<r;i++)
  {
       printf("\n Enter element number: %d ",(i+1));
       scanf("%d",&ar[i]);
  }
  printf("\n Enter the element to be searched:");
  scanf("%d",&t);
  for(i=0;i<r;i++)
  {
        if(ar[i]==t)
        {
      f=1;
      break;
        }
  }
  if(f==1)
  {
    printf("\n The Element %d is present in the array",t);
  }
  else
  {
    printf("\n The Element %d is not present in the array",t);
  }
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code