Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
test22
//fpc 3.0.4 {Linear pointers' structure} program test22; {pointer to variable} type PtrType=^BaseType ; BaseType=record info:integer; sled:PtrType end ; {pointer type} var p,q:PtrType;{pointer variable is static (!) variable} begin New(p); p^.info:=1; p^.sled:=Nil ; writeln('initial value of info ',p^.info:2); New(q); q^.info:= 2 ; q^.sled:=p ; p:=q ; q:=Nil ; Dispose(q); writeln('values of first and second info ',p^.sled^.info:2,' ',p^.info:2 ); Dispose(p); end.
run
|
edit
|
history
|
help
0
testMatrice0.1
непарное число в массиве
imprimir_numeros_hasta_N
ss
3e22
Задачи к § 66 «Символьные строки» Задача №112336. Замена a-b в последовательности символов.
кристина
uuu
12345
test27