stack

heap

bss

data

text

Reply to this note

Please Login to reply.

Discussion

stack :

local variables

registers state

function arguments

return address

heap :

malloc()

bss :

uninstalled global variables, assign 0

data :

initialized global variables

text :

code instructions