#include<stdio.h>
#include<conio.h>
int main()
{
int list[100],n,i,x,p;
printf("enter the size of thi list");
scanf("%d",&n);
printf("enter the element");
for(i=0;i<n;i++)
scanf("%d",&list[i]);
p=0;
printf("enter the element to be search");
scanf("%d",&x);
for(i=0;i<n;i++)
{
if(list[i]==x)
p=i;
}
if(p>0)
printf("position of element%d is %d",x,p);
else
printf("try again");
return 0;
getch();
}
output-
enter the size of thi list 5
enter the element 84
47
84
84
84
enter the element to be search 47
#include<conio.h>
int main()
{
int list[100],n,i,x,p;
printf("enter the size of thi list");
scanf("%d",&n);
printf("enter the element");
for(i=0;i<n;i++)
scanf("%d",&list[i]);
p=0;
printf("enter the element to be search");
scanf("%d",&x);
for(i=0;i<n;i++)
{
if(list[i]==x)
p=i;
}
if(p>0)
printf("position of element%d is %d",x,p);
else
printf("try again");
return 0;
getch();
}
output-
enter the size of thi list 5
enter the element 84
47
84
84
84
enter the element to be search 47
No comments:
Post a Comment
Note: only a member of this blog may post a comment.