Guest_imported
New member
- Jan 1, 1970
- 0
How do i display a decimal number as a hexadecimal number??? like how do show the hexadecimal equivalent of a decimal number?? Any help would be great!!!! Thanks!
Ben
Ben
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.
int value = 100;
printf("Hex value: %X\n",value);