填空题
以下函数的功能是删除字符串s中的所有数字字符,请填空。
viod dele(char *s)
int n=0,i;
for(i=0;s[i];i++)
if(
(11)
)
s[n++]=s[i];
s[n]=
(12)
;
提交答案
关闭