Latest C Aptitude Question SOLUTION: Q. Difference between strdup and strcpy? A. Both copy a string. strcpy wants a buffer to copy into. strdup allocates a buffer using malloc(). Unlike strcpy(), strdup() is not spec