Showing posts with label selection sorting. Show all posts
Showing posts with label selection sorting. Show all posts

12.17.2011

Selection sorting

Q. Write a C program to to sort a list of elements using selection sort method.

Ans.

/*program to demonstration of selection method*/
#include<stdio.h>
#include<conio.h>
#define SIZE 10
int main()
{