#include #include #include int main(int ac, char *av[]) { size_t b = atol(av[1]); char *p = malloc(b); printf("Allocated %ld bytes at %p\n", b, p); while (1) sleep (1); }