int k;
if(*s< *t)
{k=*s; *s=*t; *t=*k; }//directly change the pointed space value through the address
return s
This problem is that the address of the variable is passed in by the function, and the operation in the function is to find the original variable through the address and operate it.