填空题
以下函数的功能是删除字符串s中的所有数字字符。请填空。 viod dele(char *s) { int n=0,i; for(i=0;s[i];i++) if( 【15】 ) s[n++]=s[i]; s[n]= 【16】 ; }