BSS (Block started by symbol), 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().
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().