单项选择题

假定s被定义为指针类型char *的变量,初始指向的字符串为"Hello world!",若要使变量p指向s所指向的字符串,则p应定义为()。

A.char *p=s;
B.char *p=&s;
C.char *p;p=*s;
D.char *p; p=&s;