We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
How come I can do this: char LCDstring[] = "ABC"; ACC = LCDstring[0]; Print an A to LCD
But I cannot do this: int z = 0; ACC = LCD[z]; Print an A to LCD
Doug; Did you mis-type? ACC = LCD[z]; is not the same as ACC = LCDstring[0]; Bradford