I define b as pointer to string:
char a[] = "hello"; char *b; strcpy(&b, a);
So far so good (although I don\'t quite understand