#include #include int main(){ char* memory = calloc((size_t)1024*1024*1024*256, 1); printf("Got address %lx\n", memory); char* more_memory = calloc((size_t)1024*1024*1024*128, 1); printf("Got address %lx\n", more_memory); sleep(100); return 0; }