This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

变量设置问题

请问那个属于宏定义的范畴

.text yes executable code
.bss no global variables
.cinit yes tables which initialize global variables
.data (EABI) yes and no initialized coming out of the assembler; changed to uninitialized by the linker
.data (COFF ABI) yes initialized data
.stack no system stack
.heap or .sysmem no malloc heap
.const yes initialized global variables
.switch yes jump tables for certain switch statements
.init_array or .pinit yes Table of C++ constructors called at startup
.cio no Buffer for stdio functions