oder du verwendest funktionen wie strcpy und strcat

Code:
#include <string.h>

char intro[32];
char s[] = "Hi";

strcpy(intro, "Hallo ");
strcat (intro, "Peter");

uart_puts((intro);

strcpy(intro, s);
strcat(intro, "Klaus");

uart_puts((intro);
ist Geschmackssache und wieviel man sonst noch auf den µC haut

sast