#include struct foo { int i; char c; float f; }; struct bar { struct foo f; char c; int i; }; #if 0 #pragma BSS(".do_not_init") struct foo f; #pragma BSS(DEFAULT_SECTION_BSS) #endif int main(void) { struct bar b; printf("Hello, struct bar(%u)!\n", sizeof(b)); return 0; }