#include <stdio.h> #include <stdlib.h> main() { void * sup = malloc(sizeof(int) * 10); printf("The size of sup is: %ld\n", sizeof(sup)); }