填空题
以下函数fun的功能是返回str所指字符中中以形参c中字符开头的后续字符串的首地址,例如:str所指字符串为“Hello!”,c中的字符为’e’,则函数返回字符串"ello!"的首地址。若 str所指字符串为空中或不包含c中的字符,则函数返回NULL。请填空。 char *fun (char *str,char c) int n=0;char*p=str; if(p!=NULL) while(P[n]! =c&&p[n]! =’\\0’)n++; if(p[n]==’\\0’)retum NULL; return( );
【参考答案】
str+n或p+n