若有定义语句:char str1[]="string",str2[8],*str3, str4[10]="string";,库函数strcpy的功能是复制字符串,以下选项中错误的函数调用是

admin2020-06-16  37

问题 若有定义语句:char  str1[]="string",str2[8],*str3, str4[10]="string";,库函数strcpy的功能是复制字符串,以下选项中错误的函数调用是

选项 A、strcpy(str3, "HELLO!")
B、strcpy(str2, "HELLO!")
C、strcpy(str1, "HELLO!")
D、strcpy(str4, "HELLO!")

答案A

解析 题目中字符指针str3,没有为指针开辟内存,能作为函数参数,选择A选项。
转载请注明原文地址:https://jikaoti.com/ti/h7G0FFFM
0

最新回复(0)