engineer khan
Member level 3
- Joined
- Aug 31, 2012
- Messages
- 66
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Activity points
- 1,833
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); }