#include #include int main () { char * foo = "hello"; char * bar = malloc(sizeof(char)*(strlen(foo+1))); strcpy(bar, foo); /* Why does valgrind complain here ?? */ return 0; }