【程序填空】 --------------------------------------------------------- 题目:请编写一个函数fun,它的功能是:删除字符串中的数字字 符。例如输入字符串:48CTYP9E6,则输出:CTYPE。 -------------------------------------------------------*/ #include <stdio.h> /***********FILL***********/ void fun(_____) { char *p=s; while(*p) if((*p>='0')&&(*p<='9')) p++; else *s++=*p++; /***********FILL***********/ _____ } void main( ) { char item[100] ; printf("\nEnter a string: "); gets(item); fun(item); printf("\nThe string:\"%s\"\n",item); }
时间: 2023-07-05 21:24:43 浏览: 65
面向对象程序设计习题-填空.pdf
```c
#include <stdio.h>
void fun(char *s) {
char *p=s;
while(*p)
if((*p>='0')&&(*p<='9'))
p++;
else
*s++=*p++;
*s = '\0';
}
void main() {
char item[100] ;
printf("\nEnter a string: ");
gets(item);
fun(item);
printf("\nThe string:\"%s\"\n",item);
}
```
阅读全文