单项选择题

执行下面的一段C程序后,变量ret的值为______。
char str[20];
int ret=strlen(strcpy(str, "Hello_World\0"));

A.0
B.11
C.12
D.20