Microcontroller › 8051 › 1 ms delay calculation › max=val; (variable with 8 bit
September 30, 2013 at 12:36 pm
#10498
Participant
max=val; (variable with 8 bit data type)
for two digit , three digit use the i value for example,
three digit
for(i=0;i<=2;i++)
{
temp=max/10;
max=max%10;
}