>Is it possible to add two hexadecimal numbers in C? Yes: int a = 0xA; int b = 0xB; printf ( "%x\n", a + b );.
確定! 回上一頁