Jump to content

Pointer arithmetic

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 66.73.171.164 (talk) at 20:24, 9 September 2003. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Pointer Arithmetic is modifying the address at which a pointer points. The most common example of this is when copying a string to another, without using the C language's library funtion strCopy(), or when writing that funciton for a shared library. Some newer languages prohibit this, as it is a potential source of vile computer bugs. Java is one such language.