Talk:Memory allocation

From Rosetta Code
Revision as of 16:51, 26 May 2009 by rosettacode>ShinTakezou (int ints[100] is not explicit "stack" (likely) allocation... should be explained?)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

About langs like C, the task requires explanation about the fact that local variables are "allocated" on the stack (likely), so that a way of "allocating" 100 integers is simply int ints[100] ... even though this is not an explicit allocation? --ShinTakezou 16:51, 26 May 2009 (UTC)