问题详情
char str[ ]= "Hello";
char *p=str;
int n=10;
sizeof(str)=()
sizeof(p)=()
sizeof(n)=()
void func(char str[100])
{ }
请帮忙给出正确答案和分析,谢谢!