Revision history of "C: Ponteiro para variável"

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) 01:23, 17 April 2009Adonaimedrado (Talk | contribs). . (171 bytes) (+171). . (New page: <code lang="c"> #include <stdio.h> int main(void) { int i, *p; scanf("%d",&i); p=&i; *p*=2; printf("%d\n",i); printf("%p (&i)==%p (p)\n",&i,p); return 0; } </code>)