int a[2];
This in memory actually looks like:
//Assuming int is 2 bytes
add=2000, a[0]=124
add=2002, a[1]=534
How does this actually look like in memory
struct l {
struct l * n;
long int pad[7];
};
struct l container;
I am unable to visualize. Please help!
BTW this is taken from section 3.3.2 of What Every Programmer Should Know About Memory