[Solved] array that accepts a number only once(code doesn’t work) [closed]


it is observed from your code that given array must be filled but it should not contain redundant values.

following code iterates until the array is filled with no redundant value, once the array is filled it terminates.

int a[5],i=1,k=0,p;
int num;
scanf("%d",&num);
a[0]=num;
while(i<5)
{
   scanf("%d",&num);
   for(p=0;p<=k;p++)
   {
       if(a[p]==num)
       {
          break;
        }

        if(p==(k))
        {

           a[i]=num;
           k=i;
           i++;
        }
   }


}


for(i=0;i<5;i++)
{
   printf("%d",a[i]);
}

hope this could help you

solved array that accepts a number only once(code doesn’t work) [closed]