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)