Skip to content

Instantly share code, notes, and snippets.

@laclefyoshi
Created March 24, 2012 12:23
Show Gist options
  • Save laclefyoshi/2182023 to your computer and use it in GitHub Desktop.
Save laclefyoshi/2182023 to your computer and use it in GitHub Desktop.
show size of pointer
#include<stdio.h>
int main() {
printf("%ld\n", sizeof(void *));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment