What is selection sort in c?
Answer / Surajit Koley
Selection sort is a simple sorting algorithm that works by repeatedly finding the minimum element from unsorted elements and putting it at the beginning of the sorted part. The process continues until all elements are sorted.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the disadvantages of a shell structure?
Hai what is the different types of versions and their differences
a 'c' program to tell that the set of three coordinates lie on a same line
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
sir, i cannot find the way how to write aprogram by using array on queue
What is %d used for?
what is C?
How to implement a packet in C
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
What is an auto keyword in c?
Is null equal to 0 in sql?
What is meant by int fun const(int a, int b) { .... ... }