目的:
C语言实现删除字符串s中的数字字符。
具体代码如下:
// 删除数字 #include <stdio.h> #define N 100 int mAIn(void) { char s[N]; int j,k; gets(s);// 输入字符串 for(j = k = 0;s[j]!='