Question: Write a complete C + + program using the main f unction given below. Write a f unction called sort that sorts three integer parameters

Write a complete C++ program using the main f
unction given below. Write a f
unction called sort that sorts three integer parameters into
decreasing order. For example, a program that uses the f
unction sort follows.
int main(){
int a =2, b =7, c =1;
sort(a, b, c);
cout << a << b << c << endl; // prints 721
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!