问题详情
func(char *str)
{
printf("%d",sizeof(str));
printf("%d",strlen(str));
}
main()
char a[]="123456789";
printf("%d",sizeof(a));
func(a);