这是我的程序:
#include <stdio.h>
#include <stdlib.h>
main(){
char *p1, *p2, *p3, *p4;
p1 = (char*)malloc(10);
p2 = (char*)malloc(10);
p3 = (char*)malloc(16);
p4 = (char*)malloc(32);
printf("p1 points at: %d\n", p1);
printf("p2 points at: %d\n", p2);
printf("p3 points at: %d\n", p3);
printf("p4 points at: %d\n\n", p4);
system("PAUSE");
}
这会在我的 PC 上产生以下输出:
p1 指向:6492080
p2 点在:6492104
p3 点在:6492128
p4 指向:6492152
因此,无论分配多少字节,malloc 分配的每个内存空间都从 24 个字节开始。这是为什么?我感谢您的帮助!