Y
Hacker News
new
|
ask
|
show
|
jobs
by
saagarjha
2297 days ago
The C standard does not talk about a heap or the stack; you could implement a "heap" by handing out pointers from the top level stack frame if you wanted to.
1 comments
camgunz
2297 days ago
Is this important? By far the common case in C is using heap allocation as implemented by your libc or crt. It's pretty essential knowledge.
link