Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program For DUPLICATE ELIMNATION.

void main()

{

int i,n,a[20],z=1,b[20],j,k,m;

clrscr();

printf("Enter the n value:");

scanf("%d",&n);

for(i=1;i<=n;i++)

{

printf(" a[%d]=",i);

scanf("%d",&a[i]);

}

for(i=1;i<=n;i++)

{

for(j=i+1;j<=n;j++)

{

if(a[i]==a[j])

{

a[j]=0;

}

}

}

for(k=1;k<=n;k++)

{

if(a[k]!=0)

{

b[z]=a[k];

z++;

}

}

for(m=1;m
{

printf("%d\n",b[m]);

}

getch();

}

Download All C Programming & Study Materials PDF