Content deleted Content added
Tag: wikilinks removed |
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags |
||
Line 97:
In [[C (programming language)|C]], a function may contain many different per-call data structures. Each piece of data created on call is placed in the stack frame in order, and is thus ordered from the end to the beginning of memory. Below is a hypothetical function and its stack frame.
<
int foo() {
int a; /* integer */
Line 110:
return *b; /* read from b and pass it to the caller */
}
</syntaxhighlight>
(d..)(c.........)(b...)(a...)(CTLI)(RETA)
|