//09_String //parc_02 //strcpy() function in c --> //copy content of one string to another #include #include #include void main() { char source[]="Imacc"; char target[20]; clrscr(); strcpy(target,source); cout<<"\n Source String="<