View Code of Problem 75

#include<stdio.h>
int swap(int *a,int *b)
{
	int t;
	t=*a;
	*a=*b;
	*b=t;
	
}

int main()
{
	int a[10];
	int i,j,m;
	for(i=0;i<10;i++)
		scanf("%d",&a[i]);
	for(i=0;i<10;i++)
	{
		m=i;
		for(j=i+1;j<10;j++)
			if(a[m]>a[j])
				m=j;
		if(m!=i)
			swap(&a[m],&a[i]);
	}
    for(i=0;i<10;i++)
		printf("%d\n",a[i]);
	return 0;

}

Double click to view unformatted code.


Back to problem 75