c语言问题 char str[20]="Program",*p;p=str; 日期:2012-01-30 16:07:59 人气:1 c语言问题 char str[20]="Program",*p;p=str; str[0]首元素没错 p是首地址。 而*p是首地址指向的值,也就是首元素。