#include <stdio.h> #include <stdlib.h> int main(void) { void *give_me_space = malloc(10); char *string = give_me_space; printf("%s\n", string); return 0; }