Skip to content

Instantly share code, notes, and snippets.

@KamaKAzii
Created May 27, 2011 04:50
Show Gist options
  • Save KamaKAzii/994659 to your computer and use it in GitHub Desktop.
Save KamaKAzii/994659 to your computer and use it in GitHub Desktop.
#include <stdio.h>
main() {
int myNumber;
int *myNumberPointer;
int myNumberCopy;
myNumberCopy = myNumber;
myNumber = 10;
printf("myNumber is: %d\n", myNumber);
printf("myNumberPointer is pointing at the address: \n", );
printf("myNumberPointer is pointing at the value: \n", );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment