以下程序的输出结果是()。void Func (char str[100]); int main() { char str[] = "hello"; char *p = str; int n = 10; Func(str); void *p = malloc( 100 ); printf("%d ", sizeof(p)); printf("%d ", sizeof(n)); } void Func ( char str[100]) { printf("%d", sizeof(str)); }
发布于 2020-12-25 16:53:06
登录后免费查看答案
关注者
0
被浏览
114