fork download
  1. var
  2. T: array [0..9] of Single;
  3. P: PSingle;
  4. begin
  5. P := T;
  6. P[4] := 3.14;
  7.  
  8. Write(P[4]);
  9. ReadLn();
  10. end.
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
 3.140000105E+00