Secondo voi perchè quando lancio questo programma il mio pc mi dice segmentation fault????codice:main() { char *s = "buona!"; char *t = "notte"; printf("La stringa1 e': %s\n", s); printf("La stringa2 e': %s\n", t); while((*s = *t) != '\0') s++; t++; printf("la stringa concatenata è: %s", t); }
Un grazie anticipato a tutti i generosi forumisti!