Monday, August 17, 2009

c++: BSS: unitizliaed RAM, set to 0 before main

BSS, a part of Data Segment store all variables initialized to 0. static variable(initialized with value other than 0) are not stored in BSS.
Actually BSS is an "Uninitialized RAM" which is initialized to 0 before executing main().

No comments:

Post a Comment