Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 char hexDigit(unsigned n) { if (n < 10) { return n + '0'; } else { return (n - 10) + 'A'; } } void charToHex(char c, char hex[3]) { hex[0] = hexDigit(c / 0x10); hex[1] = hexDigit(c % 0x10); hex[2] = '\0'; }
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 char mychar='R'; char HEX1=mychar/16; if (HEX1<=9) HEX1+='0'; else HEX1=HEX1-10+'A'; char HEX2=mychar%16; if (HEX2<=9) HEX2+='0'; else HEX2=HEX2-10+'A' cout << " Hex equivalent : " << HEX1 << HEX2;;