Programming: Part 2: Send a String of Characters to the LCD Function
Share
A loop is needed to traverse the characters in the memory locations starting at the pointer. To loop through a set of characters using a pointer:
while(*StringOfCharacters > 0) { Send_A_Character(*StringOfCharacters++); } since the ++ is at the end of the variable, the value is returned prior to the increment.