1#include <string.h> 2#include <stdlib.h> 3 4int main(void) { 5 char *hello = malloc(4); 6 memcpy(hello, "hello", 5); 7 return hello[3]; 8} 9 10