Specifies storage area for zero-initialized data.
#pragma explicit_zero_data [ on | off | reset ]
The default value OFF specifies storage in the .sbss or .bss section. The value ON specifies storage in the .data section. The value reset specifies storage in the most-recent previously specified section.
#pragma explicit_zero_data on int in_data_section = 0; #pragma explicit_zero_data off int in_bss_section = 0;