單項選擇題

請讀程序:
main()
{char*p;
chars[80];
scanf("%s",s);
p=s[0];
printf("%s",p);
}
請判斷上面程序()

A.錯誤:p=s[0];正確:p=*s;
B.錯誤:p=s[0];正確:p=s[];
C.錯誤:p=s[0];正確:p=s;
D.錯誤:p=s[0];正確:p=&s;


您可能感興趣的試卷