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.
hi friends i am trying to print all the decimal no's on LCD but i am able to print till 9 only after that i am getting : ; so on
What happens after 9? You Need 2 digits. You can use a C library function or math.
example unsigned char people;
people = HoweverYouCountPeople(); print(people/10); // get 10's digit print(people%10); // get 1's digit (% = modulus)