问题 单项选择题 有以下程序#include#includemain(){char str[][20]=(“one*world”, “one*dream!”),*p=str[1];Printf(“%d”,strlen(p));printf(“%s\n”,p);}程序运行后的输出结果是A.9,One*World B.9,One,Dream! C.10 ,One,Dream!D.10, One*World 答案 参考答案:C