• Hexadecimal Arithmetic
    I want to carry out following Hexadecimal Arithmetic operation using C code Multiplication...................................... char A[2] = { 0x01, 0x02}; char B[2] = { 0x03, 0x04}; I want...
  • Hexadecimal Arithmetic
    I want to carry out following Hexadecimal Arithmetic operation using C code Multiplication...................................... char A[2] = { 0x01, 0x02}; char B[2] = { 0x03, 0x04}; I want...
  • convert decimal to hexadecimal
    Hello, How can I convert decimal to hexadecimal by Keil?. such as,convert from 2185 dec. to 889 hex. thank you. hayinga
  • convert decimal to hexadecimal
    Hello, How can I convert decimal to hexadecimal by Keil?. such as,convert from 2185 dec. to 889 hex. thank you. hayinga
  • cannot compare unsigned char with hexadecimal
    Cannot compare unsigned char with hexadecimal I have a code like that. The program won’t reach if condition when SBUF is 0xAA. if (SBUF==0xaa) { AA_flag=1; config[0]=170; }