若有说明char s1[30]="The city",s2[]="is beautiful";,则在使用函数strcat(s1,s2)后,结果是( )。

admin2009-02-15  42

问题 若有说明char s1[30]="The city",s2[]="is beautiful";,则在使用函数strcat(s1,s2)后,结果是(    )。

选项 A、s1的内容更新为The city is beautiful\0
B、s1的内容更新为is beaut\0
C、s1的内容更新为The city\0is beautiful\0
D、s1的内容更新为The cityis beautiful\0

答案8

解析 该函数用来使两个字符串连接成为一个字符串。strcat(str1,str2)将str2中的字符连接到str1的字符后面,并在最后加一个“\0”。连接后新的字符串存放在strl中。注意:用于字符串处理的函数。
转载请注明原文地址:https://kaotiyun.com/show/vvXp777K
0

最新回复(0)