X 我知道了TIPS:左右滑动导航栏可以查看更多栏目
我的电脑上没有出错,应该是兼容性问题
>> 本文固定链接: http://www.vcgood.com/archives/2903
>> 转载请注明: liaoming1984 2008年11月11日 于 C语言帝国 发表
dele(s);这一句是干什么的
解释一下
char * dele(char *s)
dele 是自定义函数
char * dele(char *s){ int n=0,i; for(i=0;s[i];i++) if(s[i]<’0′ || s[i]>’9′) {s[n++]=s[i];}
s[n]=’\0′; return s;}
你必须先 登录才能发表评论。
dele(s);
这一句是干什么的
解释一下
char * dele(char *s)
dele 是自定义函数
char * dele(char *s)
{
int n=0,i;
for(i=0;s[i];i++)
if(s[i]<’0′ || s[i]>’9′) {s[n++]=s[i];}
s[n]=’\0′;
return s;
}
我的电脑上没有出错,应该是兼容性问题