void main () { int * p = malloc(sizeof(int)); int * q = malloc(4 * sizeof(int)); int * r = malloc(16 * sizeof(int)); free(p); free(r); }