POINTERS in C What for ?

I doubt I could write more than 10 lines of C code without using a pointer or two :slight_smile:

You can think of them as helping to make you code object oriented, for example you have a generic routine that performs some work and you pass a pointer (the object) to it.

Also I think they are faster than indexing into an array although I've never looked at the compiled code to verify that.


Rob