Andrew Koening's Posts on Drdobbs
Summary
A collection of Andrew Koenig’s “Much Ado About Nothing” topics on Drdobbs.
Pointer Arithmetic: A Major (Dis)advantage of C and C++
The gist: referencing an array by indexes and by pointers are equivalent in C, but when using pointer reference, it hard to check array bounds. That’s why …