填空题

以下函数的功能是删除字符串s中的所有数字字符。请填空。
void dele (char *s)
int n=O;
for(i=0;s[i];i++)

if( 【7】 )
s[n++]=s[i];

s[n]= ’\0’;

【参考答案】

s[i]<’0’||s[i]>’9’