Hi i was wondering if someone could try to explain this function to me(doesnt have to be to in depth, i just dont really understand it), and what the side effect is, and what it does thanks!
int Max (/* in */ int trio[3])
{
int temp;
if (trio[0] > trio[1])
{
temp = trio[1];
trio[1] = trio[0];
trio[0] = temp;
}