Revision history of "C: Ponteiro para ponteiro"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 13:17, 17 April 2009Adonaimedrado (Talk | contribs). . (292 bytes) (+292). . (New page: <code lang="c"> #include <stdio.h> int main(void) { int **pp, *p, a; p=&a; pp=&p; scanf("%d",&a); printf("%d (*p) = %d (**pp) = %d (a)\n",*p,**pp,a); printf("%p (*pp) = %p (p) = %p ...)