#include<stdio.h>
int max(int a,int b)
{
return a>b?a:b;
}
void main()
{
int(*p)(int,int);
p=max;
printf("17和20之间的较大值是,%d\n",(*p)(17,20));
}