Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created January 21, 2010 04:36
Show Gist options
  • Save drewlesueur/282584 to your computer and use it in GitHub Desktop.
Save drewlesueur/282584 to your computer and use it in GitHub Desktop.
#include <stdio.h>
//refreshing my C knowledge :)
int main(){
int a = 3;
int* p = &a;
//int v = (int) p;
printf("%lu", sizeof(p)); //64 bit?
printf("%d\n", a);
printf("%d\n", *p);
printf("Hello World\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment