How to resolve the algorithm Address of a variable step by step in the Oberon-2 programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Address of a variable step by step in the Oberon-2 programming language

Table of Contents

Problem Statement

Demonstrate how to get the address of a variable and how to set the address of a variable.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Address of a variable step by step in the Oberon-2 programming language

Source code in the oberon-2 programming language

VAR a: LONGINT;
VAR b: INTEGER;

b := 10;
a := SYSTEM.ADR(b); (* Sets variable a to the address of variable b *)

SYSTEM.PUT(a, b); (* Sets the address of b to the address of a *)

  

You may also check:How to resolve the algorithm Huffman coding step by step in the UNIX Shell programming language
You may also check:How to resolve the algorithm N-smooth numbers step by step in the Phix programming language
You may also check:How to resolve the algorithm String length step by step in the Fantom programming language
You may also check:How to resolve the algorithm Munching squares step by step in the Clojure programming language
You may also check:How to resolve the algorithm Musical scale step by step in the FreePascal programming language