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

int main(void)
{
 void* c = malloc(4);
 *(int *)c = 4;
 printf("%d",*c);
 return 0;
}
