请补充函数fun(),该函数的功能是:依次取出字符串中所有的小写字母以形成新的字符串,并取代原字符串。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。 试题程序: #include<stdio.h> #include<conio.h> void fun(char *s) { int i=0; char *p=s; while( 【1】 ) { if (*p>=’a’&&*p<=’z’) { s[i]=*p; 【2】 ; } p++; } s[i]= 【3】 ; } main() { char str[80]; clrscr(); printf("\nEnter a string:"); gets(str); printf("\n\nThe string is:\%s\n",str); fun(str); printf("\n\nThe string of changingis:\%s\n",str); }