Path: utzoo!attcan!uunet!husc6!bloom-beacon!tut.cis.ohio-state.edu!rutgers!bpa!cbmvax!vu-vlsi!lehi3b15!lafcol!pilgrimk From: pilgrimk@lafcol.UUCP (Pilgrim Kenwyn A) Newsgroups: comp.lang.pascal Subject: Pointers in TP4 Keywords: operations on them Message-ID: <340@lafcol.UUCP> Date: 17 Nov 88 21:51:19 GMT Organization: Academic Computer Center, Lafayette College Lines: 15 Is there any equivalent to the ptr++ /* ptr = ptr + 1 */ in TP4. For example, in the following code segment: var _Ptr: pointer; begin .... _Ptr := @SomeLocation; end; How is it possible to move to the _Ptr+1 'th location? -thanks