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 INSERTION SORTING.

void main()

{

int i,n,a[20],m=1,j,t;

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=1;j<=i;j++)

{

t=a[i];

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

{

a[m]=a[j];

a[j]=t;

}

}

m++;

}

for(i=n;i>0;i--)

{

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

}

getch();

}

Download All C Programming & Study Materials PDF