7.利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来
void func(char *p,int len)
{
len--;
printf("%c",p[len]);
if(len==0) return;
func(p,len);
}