CompuServe Messages

#Help with Benchmark

    25-Jan-88 21:41:49
Sb: #Help with Benchmark
Fm: Mike Weiblen 72506,2072
To: ALL
I've only now had a chance to play with Benchmark & I seem to be having a problem with pointers. The code below demonstrates: VAR a : ADDRESS; c : POINTER TO CHAR; .. INC(a); (* This is OK *) INC(c); (* Compiler doesn't like this *) INC(ADDRESS(c)) (* Is this what has to be done?? *) Is there another way to increment pointers that I'm missing? Thanks – Mike