Is their any way to find compiler padded structure as output.
Ex:
struct{ int a; char b; int c;} ..
now after padding the structure will be
struct{ int a; char b;pad1; pad2; int c;}.. i actually want this as an output. Is it possible & how?
Ex:
struct{ int a; char b; int c;} ..
now after padding the structure will be
struct{ int a; char b;pad1; pad2; int c;}.. i actually want this as an output. Is it possible & how?
Comment