pascalabcnet/TestSuite/CompilationSamples/Pointer3.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

11 lines
263 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Выделение динамической памяти
var p: ^real;
begin
// Выделили динамическую память и в p записали ее адрес
New(p);
p^ := 3;
writeln('Значение в динамичесской памяти = ',p^);
// Возврат динамической памяти, на оторую указывает p
Dispose(p);
end.