有以下程序:
#include <stdio.h>
#include <string.h>
main()
{
char str[][20]= {“OneWorld","OneDream!”},p=str[1];
printf("%d,",strlen§); printf("%s\n",p);
}
程序运行后的输出结果是( )。
A) 10,OneDream!
B) 9,OneDream!
C) 9,OneWorld
D) 10,OneWorld
登录后提交答案