下列给定函数fun的功能是:将tt所指字符串中的小写字母全部改为对应的大写字母,其它字符不变。 #include #include char* fun( char tt[] ) { int i; for( i = 0; tt[i]; i++ ) if(( 'a' <= tt[i] )||( tt[i] <= 'z' ) ) /**********found***********/ _______ return( tt ); } main( ) { char tt[81]; printf( "\nPlease enter a string: " ); gets( tt ); printf( "\nThe result string is:\n%s", fun( tt ) ); }