谁能分析一下着个FUN的功能是怎么实现的,谢谢啊
# include <conio.h>
# include <stdio.h>
# include <string.h>
char *fun(char *s,char *t)
{
char *p,*r,*a;
a=NULL;
while(*s)
{
p=s;r=t;
while(*r)
if(r==p)
{
r++;
p++;
}
else
break;
if(*r=='\0')
a=s;
s++;
}
return a;
}
main()
{
char s[100],t[100],*p;
clrscr();
printf("\nplease enter string s:");
scanf("%s",s);
printf("\nplease enter substring t:");
scanf("%s",t);
p=fun(s,t);
if (P)
printf("\nthe result is:%s\n",p);
else
printf("\nnot found!\n");
}
这个题目的考的是FUN的功能:求出在字符串中最后一次出现子字符串的地址,通过函数值返回,在主函数中输出从此地址开始的字符串;若未找到,则函数值为NULL.
有谁可以帮我分析一下,FUN的功能是怎么实现的,我学C没多久,不大懂,呵呵