In function main declare three integers a, b, and c and assign a random number between 1 and 50 to each. Print the integers and their addresses. Then call the function order to place the integers in numerical order using pass by address. Function order should have three parameters: int *aPtr, int *bPtr, and int *cPtr. The purpose of function order is to place the three integers in order so that aswap can be called from order. (It is not necessary to implement a complicated sorting algorithm. The values can be placed in order using three comparisons.)
The integers should be printed in order with addresses from main. When the steps of the function order have been completed the smallest value will be stored in a, the middle in b, and the largest in c.