一起答
主观

以下函数的功能是删除字符串s中的所有数字字符,请填空。

void dele(char *s)

{ int n=0,i;

  for(i=0;s[i];i++)

     if()

        s[n++]=s[i];

  s[n]=;

}

参考答案
查看试卷详情