Declaração do ponteiro: int *p;
Endereço de uma variável: p = &c;
p "aponta" para c
Operações
*ip = *ip + 10;
y = *ip + 1;
++*ip;
(*ip)++;
Ponteiros para Arrays
int *pa; pa = &a[0];
Anotações:
pa to point to element zero of a; that is, pa contains the address of a[0].
pa = pa + 1;
Anotações:
If pa points to a particular element of an array, then by definition pa+1 points to the next
element, pa+i points i elements after pa, and pa-i points i elements before. Thus, if pa points
to a[0],