void lcd_put_int(int16 num){
int16 temp;
unsigned char i = 0, c[5]; ????
temp = num;
if (temp != 0) {
while(temp){
c[i++] = temp%10; ???
temp /= 10;???
}
while(i) lcd_putc(c[--i] + '0');???
}
else lcd_putc('0');????
}
bac nao co the tra loi giup em tung cho em danh dau ??? dc ko a
|