このコードでは、要素 '7' を見つける必要がある場合、配列 = 2 の位置を指しますが、複数の位置を取得する方法、配列に [4,7,7,8,9] がある場合の答えarray=1 & array=2.. として位置を指す必要があります。
#include<stdio.h>
int main()
{
int i;
int a[5]={4,5,7,8,9};
int ele,temp=0,pos=0;
printf("Enter the element to be search\n");
scanf("%d",&ele);
// searching for the element
for (i=0; i<5; i++)
{
a[i]=a[i];
if (a[i]==ele)
{
temp=1;
pos=i;
}
}
if (temp==1)
printf("Element found %d , position==%d,",ele,pos);
else
printf("Element not found\n");
}