Hallo,
also so wirklich hab ich das noch nciht verstanden:
Code:
for(;;)
 {

  char test[] = "erfolg!!!";
  char *p_test = test;   //p_test zeigt auf den inhalt von test
  *p_test = "bongo";         
  send_string(p_test);
  char test2[] = "hallo\n\r";
  char *p_test2 = test2;
  send_string(p_test2);
  waitms(1000); 
  }
Eigentlich würde ich jetzt "bongohallo" erwarten, ich bekomme jedoch
"jerfolg!!!hallo".