codice:
#include<stdio.h>
void main()
    int i=0,j=0;
    char str1[6]="pippo",str2[6]="pluto",str3[11]="";
    for(i=0;;i++){
        if(str1[i]=='\0')break;
        str3[i]=str1[i];
    }
    for(j=0;;j++,i++){
        if(str2[j]=='\0')break;
        str3[i]=str2[j];
    }
    printf("%s\n",str3);
}
;