Latest ADITI Aptitude Question SOLUTION: Q. In the following program #include main() { char *pDestn,*pSource="I Love You Daddy"; pDestn=malloc(strlen(pSource)); strcpy(pDestn,pSource); printf("%s",pDestn); free(pDestn);