Question: Write a templated function sortDescending that will take in an array of any type and the size of the array then sort the array into

Write a templated function sortDescending that will take in an array of any type and the size of the array then sort the array into descending order.

code:

#include

using namespace std;

//Do not modify anything on or above the line below this //YOUR_CODE_BELOW

//YOUR_CODE

//YOUR_CODE_ABOVE //Do not modify anything on or below the line above this

int main() { int nums[] = {4, 1, 7, 5, 8, 6, 2}; char letters[] = {'S', 'R', 'C', 'B'};

sortDescending(nums, 7); sortDescending(letters, 4);

for(int i = 0; i < 7; i++) cout << nums[i] << " "; cout << endl;

for(int i = 0; i < 4; i++) cout << letters[i] << " "; cout << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!