KamaKAzii
5/27/2011 - 4:53 AM

gistfile1.txt

#include <stdio.h>
#include <stdlib.h>

main() {

  void * sup = malloc(sizeof(int) * 10);
  printf("The size of sup is: %ld\n", sizeof(sup));

}