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