Thursday, July 28, 2005

A great tutorial on pointer in C

http://pweb.netcom.com/~tjensen/ptr/pointers.pdf

I learned a lot from this, interesting things like:

b[0] = 'x';

is the same as, and legal too:

0[b] = 'x';

I wanted to understand the function pointer concept a little more clearly, and this definitely helped.

No comments: