bug1.pp 157 B

1234567891011
  1. Program Example2;
  2. { Program to demonstrate the Addr function. }
  3. Const Zero = 0;
  4. Var p : pointer;
  5. begin
  6. p:=Addr(Zero); { P points to 'Zero' ??? }
  7. end.