Common Pitfalls main() { char carray[6]; char *cptr; carray = hello ; /* error: array name has no lvalue */ cptr = hello ; strcpy(carray, hello ); strcpy(cptr, hello ); /* error: no memory spaces */ }