GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Programming  >  C

 Print  |  
Question:  BSS Data Segment

Answer: what is a bss data segment?


June 06, 2009 05:00:46 #2
 alokag   Member Since: June 2009    Total Comments: 5 

RE: BSS Data Segment
 
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().
     

 

Back To Question