struct testStruct { char a; int b; float c; }; /*volatile struct testStruct testObj; */ char a __attribute__ ((aligned (2))); int main () { a = 2; /* testObj.a = 'c'; testObj.b = 6; return testObj.a; */ }