程序修改题:以下proc函数的功能是将字符串str中字符下标为奇数的小写字母转换成对应的大写字母,结果仍保存在原字符串中。例如,输入abcdefg,输出aBcDeFg。请勿改动main()函数,不得增行或删行,也不得更改程序的结构,仅在****found****下一行改错。请将该行正确的代码完整地填写在横线上(注意:语句结束符分号(;)不用填写)。#include#defineM80voidproc(char*str){inti=0;*********found****************while(str[i]==0)___________________{if((i%2!=0)&&((str[i]>='a')&&(str[i]<='z')))*********found****************str[i]+=32;_______________*********found****************j++;_____________________}}voidmain(){charstr[M];printf('Enterthestring:
');gets(str);proc(str);printf('Thenewstring:
');puts(str);}(15.0分)
');gets(str);proc(str);printf('Thenewstring:
');puts(str);}(15.0分)