有以下程序 #include #include void fun (char *w, int m ) { char s, *p1, *p2; p1=w;p2=w+m-1; while ( p1<p2 ) { s=*p1; *p1=*p2;

admin2020-05-19  24

问题 有以下程序
#include
#include
void  fun (char  *w, int  m )
{  char  s, *p1, *p2;
p1=w;p2=w+m-1;
while ( p1<p2 )
{
s=*p1;  *p1=*p2;  *p2=s;
p1++;  p2--;
}
}
main()
{  char  a[ ]="123456";
fun ( a, strlen
(a) );puts
(a);
}
程序运行后的输出结果是

选项 A、123456
B、116611
C、161616
D、654321

答案D

解析 主函数中调用fun(a,6)后,指针p1指向字符串中的"1"、p2指向字符串中的"6"。While循环中,只要p1
转载请注明原文地址:https://kaotiyun.com/show/fwCp777K
0

最新回复(0)