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.

Zero Initialization for global variables in C++

Hello,

since I found out how to initialize the .bss Section with 0 (http://e2e.ti.com/support/development_tools/compiler/f/343/p/353583/1240668.aspx#1240668)

my new question is, how can I do that with C++ code? The global variables of C++ projects are not in the .bss Section? Is it possible to init these variables, too?