紧急求住!!-----计算sizeof的值----值得讨论!!!!
char str[]="hello";
char *p=str;
int n=10;
_____________________
(1)
sizeof(str)=?;
sizeof(p)=?;
sizeof(n)=?;
(2)
void func(char str[100]
{
sizeof(str)=?;
}
(3)
void *p=malloc(100)
sizeof(p)=?;
_____________________
本人做了!!!!!~~~~~~~一踏糊涂啊!!!!!!!!

