Question: Write a function named "PutInOrder" that has 2 double reference parameters (say a and b). The function rearranges the values pointed to by a and b such that a points to the smallest value and b to the largest value.
If the two values are equal it doesn't matter which one comes first.
Make sure to write clear, complete and concise documentation for your function. Use the c programming language to prepare this program.