C programming Interview questions and answers: SELECTION SORT USING C PROGRAM

C programming Interview questions and answers: SELECTION SORT USING C PROGRAM

瀏覽:595
日期:2024-05-06
I think selection sort works on its POSITION and sort element on locations... my solution is.... #include void main() {int arr[5]={3,10,2,4,1}; int min,i,j,temp; clrscr(); for(i=0;i...看更多