I can't figure out what is going wrong with it.
If input: 4,56,5,2 then output shown is: 2,4,0,1304.
If input: 27,54,43,26,2 then output shown is: 2,26,0,1304,0
If input: 34,87,54,4,34 then output shown is: 4,34,0,1304,0
Basically, only first two sorted nos are being shown in output and on other places either 1304 or 0 is showing for any set of input.
#include <conio.h>
#include <stdio.h>
void main()
{
int a[10],b[10];
int i,size,j,k;
clrscr();
printf("please tell how many nos you want to enter");
scanf("%d",&size);
printf("Enter the nos");
for(i=0;i<size;i++) scanf("%d",&a[i]);
b[0]=a[0];
//insertionSort algo ---->
for(j=1;j<size;j++)
{
for(k=j-1;k>=0;k--)
//handling comparision with b[0]
if(k==0&&(a[j]<b[0])) {
b[1]=b[0];
b[0]=a[j];
}
//handling comparison with b[1:size-1]
if(k>0&&(a[j]<b[k])) { b[k+1]=b[k]; }
if(k>=0&&(a[j]>=b[k])) { b[k+1]=b[k]; break; }
}
for(i=0;i<size;i++) printf("%d\n",b[i]);
getch();
}