单项选择题
下面程序的功能是实现字符串逆序存放。程序运行结果如下:Input a string:ABCDEFGHI↙Inversed results:IHGFEDCBA按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。includeincludedefineN80voidInverse(){temp=*pStart;______________;*pEnd=temp;}}
A.第16行: ? char *pStr 第23行: ? pEnd=pStr+len-1 pEnd-- 第26行: ??*pStart = *pEnd
B.第16行: ??char pStr 第23行: ??pEnd=pStr+len pEnd-- 第26行: ??*pStart = *pEnd
C.第16行: ?char *pStr 第23行: ?pEnd=pStr+len-1 pEnd++ 第26行: ??pStart = pEnd
D.第16行: ?char pStr 第23行: ?pEnd=pStr+len+1 pEnd++ 第26行: ??*pStart = *pEnd