engineer khan
Member level 3
Hello everybody ! please explain the following code to me
whats while(*s) how it works
whats while(*s) how it works
Code C - [expand] 1 2 3 4 5 void send_to_modem(char *s){ while(*s) uart1_write(*s++); uart1_write(0x0d); }