Skip to content

Instantly share code, notes, and snippets.

@KamaKAzii
Created May 27, 2011 04:53
Show Gist options
  • Save KamaKAzii/994662 to your computer and use it in GitHub Desktop.
Save KamaKAzii/994662 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
main() {
void * sup = malloc(sizeof(int) * 10);
printf("The size of sup is: %ld\n", sizeof(sup));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment