Gast
#236806
Warum liefert sizeof(sendstring) den Wert 2?
sowohl bei:
void can_send_mg (char sendstring[8], long msid, int m_box)
{
AnzZeichen=sizeof(sendstring);
...
als auch bei:
void can_send_mg (char *sendstring, long msid, int m_box)
{
AnzZeichen=sizeof(sendstring);
...
can_send_mg ("TestMB01", 8192 + Controller_ID,14);