0
1.1kviews
Write a program to search a number within the array.
1 Answer
written 8.3 years ago by |
#include<stdio.h>
voidmain(){
inta[30],ele,num,i;
printf("\nEnter no of elements :");
scanf("%d",&num);
printf("\nEnter the values :");
for(i=0;i<num;i++){
scanf("%d",&a[i]);
}
//Read the element to be searched
printf("\nEnter the elements to be searched :");
scanf("%d",&ele);
//Search starts from the zeroth location
i=0;
while(i<num&&ele!=a[i]){
i++;
}
//If i < num then Match found
if(i<num){
printf("Number found at the location = %d",i+1);
}else{
printf("Number not found");
}
getche();
}
Output:
Enter no of elements:5
1122334455
Enter the elements tobe searched:44
Number found at the location=4