Question: 1a) Write a C program, named as sort.c, that does the following: generates an integer array of size 10 with random numbers prints unsorted array
1a) Write a C program, named as sort.c, that does the following: generates an integer array of size 10 with random numbers prints unsorted array sorts the array using selection sort algorithm prints the sorted array Make sure C program solution has the following method definitions: -selectionSort(int array[], int n) -swap (int *px, int *py); -printArray(int array[], int n) -int main() 1b) Write assembly code performing the same program (name your file as sort.s).
Sample Run:
Unsorted Array:
12 87 25 43 9 11 15 10 3
Sorted Array
3 9 10 11 12 15 25 34 43 87
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
