i don’t really understand this. please help. C++
Write a template function that sorts exactly four values. Specifically it receives four parameters which are all references to the template type. The function should rearrange the four parameters into non decreasing order, left to right For example, int a 3 int b 1: int d1; sort( a, b, c, d) I/ your function cout << a << b << c << d The output should be 1134. This should, naturally, also
OR
OR