Address of a variable: Difference between revisions

m
Added to <10 category, corrected spelling
m (Changed over to works with template)
m (Added to <10 category, corrected spelling)
Line 1:
[[Category:Less Than 10 Examples]]{{task}}
{{task}}
{{basic data operation}}
Demonstrate how to get the address of a variable and how to set the address of a variable.
Line 9:
The_Address := I'Address;
===Set The Address===
Set the address of a variable to address A100 in hexidecimalhexadecimal
I : Integer;
for I'Address use 16#A100#;
Set the address of one variblevariable to the address of another variable, creating an overlay.
I : Integer;
J : Integer;
Anonymous user