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);


}
Secondo voi perchè quando lancio questo programma il mio pc mi dice segmentation fault????
Un grazie anticipato a tutti i generosi forumisti!