Topic 6 Theory Flashcards
1
Q
Stack
A
Maintains procedure call frames, subroutine linkage, etc
2
Q
Heap
A
dynamically allocated memory
3
Q
bss
A
(block starting symbol) declare uninitalized variables, global or static variable initialised to 0.
4
Q
Data
A
declare initialized data or constants not changing at runtime.
5
Q
Text
A
keeps the actual code. must begin with declaration global main, telling the kernel where program execution begins