#include struct s0 { int x; int y; }; struct s2{ char c1; char c2; int x; }; struct s0 my_struct; // 8 bytes struct s2 my_other_struct = {'A', 'Z', 99}; //8 bytes int main(void) { my_struct.x = 10; my_struct.y = 3; putchar(my_other_struct.c1); putchar(my_other_struct.c2); printf("%d", my_other_struct.x); return 0; }