Example
function Test: Boolean;
var
a, b, c: Integer;
begin
...
end;
When a program containing such code is executed, are they allocated a, band ceach time it is called Test, or are they distributed only once somewhere at the initialization stage? I ask about this because such information is not available in the debugger.
source
share