Data segment: Difference between revisions

Content deleted Content added
refbegin is misplaced here
Dzil123 (talk | contribs)
m Added wikilink
Line 26:
 
===BSS===
{{Main | BSS segment}}
The [[BSS segment]], also known as ''uninitialized data'', is usually adjacent to the data segment. The BSS segment contains all global variables and static variables that are initialized to zero or do not have explicit initialization in source code. For instance, a variable defined as <code>static int i;</code> would be contained in the BSS segment.
 
===Heap===