What 0X means?
What 0X means? 0X or 0-X (zero X) may refer to: 0x, a prefix for hexadecimal numeric constants in computing. How do you convert a number to hexadecimal? Take decimal number as dividend. Divide this number by 16 (16 is base of hexadecimal so divisor here). Store the remainder in an array (it will be: 0 to 15 because of divisor 16, replace 10, 11, 12, 13, 14, 15 by A, B, C, D, E, F respectively). Repeat the above two steps until the number is greater than zero. What does 0x4000 mean? In C and languages based on the...