This compiles, but only prints "Test str".
ASCIIZ s * 260
s = "Test string"
DIM p AS char AT STRPTR(s)
print p
This works
char s = "Test string"
DIM p AS char AT STRPTR(s)
print p
But it is not what I intended to do.
If I call a function that returns a pointer to am asciiz string, i.e. an asciiz ptr, how I can deference that pointer?