sorting

Bubble Sort

# include < stdio.h > int main () { int a[ 50 ], n, i, j, temp = 0 ;   printf ( " Enter how many n…

Selection Sort in C

/*C Program to implement Selection Sort*/ #include <stdio.h>  void main() {    int array[100], n, c, d, po…

Load More
That is All