Skip to content

Commit

Permalink
Refresh HTML pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Kotal committed Mar 3, 2024
1 parent c81c9d1 commit 59d7556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 03.html
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ <h2 class="Box-title">
<span class="pl-en">printf</span>(<span class="pl-s">"%d\n"</span>, <span class="pl-en">myfn</span>(<span class="pl-s1">i</span>, <span class="pl-s1">i</span>)); <span class="pl-c">// will print 9</span>
<span class="pl-en">printf</span>(<span class="pl-s">"%d\n"</span>, <span class="pl-s1">i</span>); <span class="pl-c">// will print 3</span>
}</pre></div>
<p>Local variables are stored on stack.</p>
<p>Local variables are stored on a stack or in registers.</p>
<p>Argument passing depends on bitness and architecture. E.g. 32-bit x86 puts them
on the stack, 64-bit x64 ABI puts first 6 arguments to registers, the rest on a
the stack.</p>
Expand Down

0 comments on commit 59d7556

Please sign in to comment.