Hacker News new | ask | show | jobs
by FreeFull 1175 days ago
When you do `*(pointer + 1)`, it'll actually increment the address of the pointer by `sizeof(*pointer)`, so it indeed works the same as indexing `pointer[1]`