Data segment: Difference between revisions

Content deleted Content added
without merit. change sections if you want, don't muck up the article.
Line 19:
 
===BSS===
The [[BSS segmentSEGMENT]], 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===