有以下程序 #include void fun(char *t , char *s) { while(*t!=0) t++; while( (*t++ = *s++ )!=0 ) ; } main() { char ss[10]="acc",aa[10]

admin2020-07-28  22

问题 有以下程序
#include
void fun(char *t , char *s)
{ while(*t!=0) t++;
while( (*t++ = *s++ )!=0 ) ;
}
main()
{ char ss[10]="acc",aa[10]="bbxxyy";
fun(ss, aa); printf("%s,%s\n", ss,aa);
}
程序的运行结果是( )。

选项 A、accbbxxyy,bbxxyy
B、acc,bbxxyy
C、accxxyy,bbxxyy
D、accxyy,bbxxyy

答案A

解析 函数fun()中第一个while循环将指针t指向了当前字符串的尾部,而第二个while循环则是将s指向的字符串赋值给指针t指向的后续空间,所以函数fun()的功能是把s指向的字符串复制到t指向的字符串尾部,所以输出结果为选项A)。
转载请注明原文地址:https://kaotiyun.com/show/6L3p777K
0

随机试题
最新回复(0)