1 '' examples/manual/proguide/pointers/addsub.bas 2 '' 3 '' NOTICE: This file is part of the FreeBASIC Compiler package and can't 4 '' be included in other distributions without authorization. 5 '' 6 '' See Also: https://www.freebasic.net/wiki/wikka.php?wakka=ProPgPtrArithmetic 7 '' -------- 8 9 Dim p As Integer Ptr = New Integer[2] 10 11 *p = 1 12 *(p + 1) = 2