若有以下程序
#include <stdio.h>
int *f(int*s, int*t)
{
int k;
if (*s<*t)
k=*s; *s=*t; *t=k;
}
return s;
main()
int i=3,j=5,*p=&i,*q=8&j,*r;
r=f(p,q);
printf("%d,%d,%d,%d,%d\n",I,j,*p,*q,*r);
则程序的输出结果是( )
3,5,5,3,5
3,5,3,5,5
5,3,5,3,5
5,3,3,5,5