Can someone give me a quick hint what the difference is between accessing the elements of array “my_array” in the style of “my_array->x”, and “my_array–>x”, resp?
Using “->” gives me compiler warnings (“Using ‘->’ to access a → or table array”), but seems to work fine, the other spits out lots of runtime errors.
I’ve got a hunch one is accessing the variable contents, the other the addresses – but how do I make the warnings go away?
Thanks a lot, and sorry it it’s been asked. I couldn’t find anything helpful in DM4 nor at Roger Firth’s pages.