Hi All,
Does Microsoft VC++ compiler provide option for allocating memory for global variables as per user wish or in continous manner without padding.
I need to global ram structures to be in continuous memory location with padding in middle.
struct details a;
struct details b;
both structures above need to place in ram one after another.
I tried #pragma section option provided in VC++ but didn't work.
Help out!!