Modify task4.c to sort the array using any sorting algorithm. Your program should work like this: 1 2 2 12 28 32 40 43 48 99 task4.c Sorting an array sorting using any algorithm */ #include int...


Modify
task4.c
to sort the array using any sorting algorithm. Your program should work like this:


1


2


2


12


28


32


40


43


48


99



task4.c

Sorting an array

sorting using any algorithm

*/

#include



int main()

{

    int i;

    int num[10] ={12,32,43,40,1,2,48,2,99,28};





    for(i=0;i<>

        printf("%d\n",num[i]);

    }








    return 0;

}



Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here