Hacker News new | ask | show | jobs
by 36erhefg 3928 days ago
a is a label, or an alias of a memory address. It is not a pointer. ( Your third example has a mistake, the correct increment is: a+2, because pointer arithmetic increments in object size not byte size )

Read this:http://eli.thegreenplace.net/2009/10/21/are-pointers-and-arr...

1 comments

Interesting read. Thanks :)