Hallo,
hab noch ne Frage, und zwar warum wird bei folgendem Code
Code:
while (*s)
    {   /* so lange *s != '\0' also ungleich dem "Sting-Endezeichen" */
        uart_putc(*s);
        s++;
    }
von da http://www.mikrocontroller.net/artic...e_.28String.29
nicht geschrieben:
while (*s != '\0') ?