写出运行结果: char str[] = “world”; cout << sizeof(str) << “: “; char p = str; cout << sizeof(p) << “: “; char i = 10; cout << sizeof(i) << “: “; void pp = malloc(10); co

A.6:4:1:4 B.5:4:1:4 C.5:5:1:4 D.6:4:1:0

时间:2024-02-07 16:59:53

相似题目