//09_String //parc_06 //strncat() function in c // It append a portion of string to another string #include #include #include void main() { char s1[]="Imacc"; char s2[]="Education"; clrscr(); strncat(s1,s2,1); printf("\n Source String=%s",s1); getch(); } /* -----output------- Source String=ImaccE */