Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
~215 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for lrnzsmok1

[CODE]#include<iostream.h> #include<conio.h> void Selsort(int X[], int SIZE) { int pos,small,temp; for (int i=0; i<SIZE-1; i++) { small=X[i]; for (int j=i+1; j<SIZE; j++) { if (X[j]<small) {small=X[j]; pos=j;} } temp=X[i]; X[i]=X[pos]; X[pos]=temp; } } void main(void) { clrscr(); int A[10]; int size; cout<<"\n Enter array size :"; cin>>size; cout<<"\n Enter array …

Member Avatar for shubhamhaowa
0
215

The End.