Question: Create a C program that will print out the original array, swap &sort the array and then print in the main: a ) Create print
Create a C program that will print out the original array, swap &sort the array and then print in the main:
a ) Create print array function(format and inside requirements below):
void printArray(int v[], int n) {
// write a loop structure here that will print out the array
// contents all on one line, where each element is separt-
// ed by a comma
}
2. Create a swap and sort function that will swap and sort the array
3. Construct the main program (declare and initialize the array with 10 elements (not in order), print the contents of the array using printArray function (write a loop structure here that will print out the array contents all on one line where each element is separated by a comma), sort and print the array and then print the array again so that we can see that it is store
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
