问题详情
●执行下面的一段C程序后,变量ret的值为(61)。
char str[20];
int ret= strlen(strcpy(str,"Hello_World "));
(61) A.0
B.11
C.12
D.20
请帮忙给出正确答案和分析,谢谢!