BSS Data Segment

What is a bss data segment?

Questions by rajeevpk4

Showing Answers 1 - 9 of 9 Answers

alokag

  • Jun 25th, 2009
 

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().

sudheer .T

  • Aug 7th, 2011
 

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().

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions