How do I make an equivalent "const"-pointer in PB?
C-code: const int *pOne;
pOne is a pointer to a constant of Integer-type. The value can't be change.
Now how do I do that in PB?
Would this be valid:
*myptr.int\#
or is it pure rubbish?
Thanks in advance