int main() { int *p = malloc(4); int *q = malloc(4); *p = 0; *q = 0; free(p); free(q); }