Starter Tutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C Programming » Programs » Arrays » C program to sort elements of an array using selection sort
Suryateja Pericherla Categories: Arrays. No Comments on C program to sort elements of an array using selection sort
Join Our Newsletter - Tips, Contests and Other Updates
Email
Name

In this article we will learn to implement a C program to sort elements of an array using selection sort. A C program is provided below which reads a list of numbers and prints the sorted list of numbers using selection sort algorithm.

 

Program is as follows:

//C program to sort an array of elements using selection sort
#include<stdio.h>
#include<conio.h>
void main()
{
	int a[6], minpos, i, j, temp;
	printf("Enter 6 numbers: ");
	for(i=0; i<6; i++)
		scanf("%d", &a[i]);
	for(i=0; i<6; i++)
	{
		minpos = i;
		for(j=i+1; j<6; j++)
		{
			if(a[minpos] > a[j])
				minpos = j;
		}
		temp = a[minpos];
		a[minpos] = a[i];
		a[i] = temp;
	}
	printf("After sorting, array elements are: ");
	for(i=0; i<6; i++)
		printf("%d ", a[i]);
	getch();
}

 

Input and output for the above program is as follows:

Enter 6 numbers: 5 3 1 2 6 4
After sorting, array elements are: 1 2 3 4 5 6

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory