填空题
下列给定程序中函数fun()的功能是:将tt所指字符串中的小写字母全部改为对应的大写字母,其他字符不变。
例如,若输入“Ab, cD”,则输出“AB, CD”。
请在标号处填入正确的内容,使程序得出正确的结果。
注意:不要改动main()函数,不得增行或删行,也不得更改程序的结构。
试题程序
#include
<conio.h>
#include <stdio.h>
#include
<string.h>
char*fun(char tt[])
{ int
i;
for(i=0; tt[i]; i++)
if((tt[i]______'a')______ (tt[i]______'z'))
tt[i]-=32;
return (tt);
}
main()
{ char tt[81];
printf("/nPlease enter a
string:");
gets(tt);
printf("/nThe result
string is: /n% s",fun(tt));
}