int a[2];
这在内存中实际上看起来像:
//Assuming int is 2 bytes
add=2000, a[0]=124
add=2002, a[1]=534
这实际上在内存中看起来如何
struct l {
struct l * n;
long int pad[7];
};
struct l container;
我无法想象。请帮忙!
顺便说一句,这取自每个程序员应该了解的关于内存的第 3.3.2 节