Microcontroller › 8051 › can i have a program in keil software › while( length ){ lcd_write(
May 17, 2013 at 9:32 am
#9774
Participant
while( length )
{
lcd_write( (value / div) + 48 ); // write highest digit first
value = value % div;
length–;
div /= 10;
}