#include int main() { int* ptr = malloc(sizeof(int)); *ptr = 4; free(ptr); }