tags:

views:

139

answers:

7

Possible Duplicate:
What are the barriers to understanding pointers and what can be done to overcome them?

Was just wondering if anyone could "point me" to a good tutorial on pointers

Would be very greatful

Thanks

A: 

Well, http://pweb.netcom.com/~tjensen/ptr/cpoint.htm seems quite reasonable.

Joonas Pulakka
A: 

This post http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome has a great explanation of how pointers work.

klausbyskov
so you're suggesting it's a dup? :)
roe
@roe kinda, yeah ;-)
klausbyskov
+2  A: 

The best start is Kerrigan and Richie book of "Programming in C".

Artem Barger
A: 

I like C for smarties a lot. It deals with many of the issues people face with pointers, is written by someone who knows C very well, and to paraphrase Einstein, doesn't simplify things more than they need to be. In particular, you should read "Are pointers numbers?", and "More on arrays and pointers" from the website.

Also, see comp.lang.c FAQ, sections 4, 5, 6, and 7.

Alok
A: 

While not related only to pointers, Defensive Programming is something that should definitely read up on and practice.It greatly reduces the number of mistakes that a programmer can mak

Here's a couple of nice links:

Manish Chakravarty
A: 

Read The C Programming Language by Brian Kernighan and Dennis Ritchie; it is excellent.

Hans W
A: 

There is always Pointer Fun with Binky, produced by Stanford.

Edd