Content deleted Content added
Line 27:
The '''BSS segment''' contains uninitialized static data, both variables and constants, i.e. global variables and local static variables that are initialized to zero or do not have explicit initialization in source code. Examples in C include:
static int i;
static char a[12];
=== Heap ===
|