Selection Sort Version 1.0

Hi there i has been a while since I was not able to upload new codes in C++ because of my very hectic work schedule. Anyway about this code I called it Selection Sort Version 1.0 in C++. I show how to use selection sort algorithm to sort a number that is being provided by the user. I hope this code will help anyone that is interested in C++ programming.
If you find my work useful send me an email at jakerpomperada@yahoo.com. I am also accepting programming job, assignments and projects at a very reasonable price. People here in the Philippines can reach me in my mobile phone number 09296768375 and my telephone number at home +63 (034) 4335081. Thank you very much and God Bless.
Regards,
Mr. Jake R. Pomperada, MAED - Instructional Technology
Programmer, Teacher and Computer Teachnician
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments
Selection Sort code in C (most easy one) By Anil N S
#include
#include
void selection_sort(int n,int a[])
{
{
{
int i,j,temp,min;
for(i=0;i
min=i;
for(j=i+1;j
if(a[j] min=j;
}
temp=a[i];
a[i]=a[min];
a[min]=temp;
}
}
int main()
scanf("%d",&a[i]);
printf("%d ",a[i]);
{
int a[10],n,i;
clrscr();
printf("Enter no of elements:\n");
scanf("%d",&n);
printf("Enter the elements:\n");
for(i=0;i
selection_sort(n,a);
printf("Sorted Array is:\n");
for(i=0;i
getch();
return 0;
Add new comment