
//Program for selection sort #include<stdio.h> #include<conio.h> //Main function void main() { int a[10],n,i,temp,j; clrscr(); printf("Enter size of array:"); scanf("%d",&n); printf("\nEnter the elements into array:"); i=0; while(i<n) { scanf("...
This is just the beginning of this blog, please don't copy any of my posts.