answersLogoWhite

0

The hexadecimal notation is base-16, so for small numbers, arrange them right to left as powers of 16 (units 0 to 9 and A through F representing 10, 11, 12, 13, 14, and 15).

Examples: 21 = 15 hex (16+5) and 31 = 1F (16+15)

For larger numbers, see the process at the related link below.

Here is a program:

#include

#include

void main()

{

int n;

clrscr();

printf("Enter Decimal Number: ");

scanf("%d",&n);

printf("Hexadecimal value is: %x",n);

getch();

}

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the word for H stand for in binary to Decimal Conversion?

hexadecimal, eg. 1ABH = 1AB(16) = 427(10)


What is 68 in hexadecimal?

The question is ambiguous:what is 68 in hexadecimal when converted to decimal, orwhat is 68 in decimal when converted to hexadecimal.


What are the decimal and hexadecimal equivalents of the binary number 10011101?

10011101: Decimal = 157 Hexadecimal = 9D


How do you solve octa-hexadecimal?

That depends what you want to "solve" for - in other words, what the question is. For example, whether you want to:* Convert from hexadecimal to decimal* Convert from decimal to hexadecimal* Count in hexadecimal* Add hexadecimal numbers* etc.


Convert hexadecimal to 4?

4 is 4 in hexadecimal of decimal.


What follows 19 in hexadecimal?

19 in hexadecimal is 25 in decimal. 20 follows it and is 26 in hexadecimal.19 in decimal is 13 in hexadecimal. 20 in decimal is 14 in hexadecimal.


What is 1976 in hexadecimal?

The decimal number 1976 is represented in hexadecimal as 7B8.


What is 999910 in hexadecimal?

The value in hexadecimal of the decimal number 999910 is F41E6.


What is DCE and what is its hexadecimal value in decimal?

DCE means: Data Carrier Equipment Hexadecimal value in decimal: 3192


What is the hexadecimal for 11111011010?

If the above is decimal then in hexadecimal it is 2964492C2. If it is binary then in hexadecimal it is 7DA. If it is octal then in hexadecimal it is 49241208.


What is del in hexadecimal?

In hexadecimal, "del" does not directly represent a numerical value, as it is a string of characters. However, if you consider each character's ASCII value, 'd' is 64 in decimal (or 0x64 in hexadecimal), 'e' is 101 in decimal (or 0x65 in hexadecimal), and 'l' is 108 in decimal (or 0x6C in hexadecimal). Therefore, the string "del" can be represented as a sequence of hexadecimal values: 0x64 0x65 0x6C.


Convert hexadecimal no BB895C tO octal and decimal?

Hexadecimal -> BB895Cdecimal -> 12.290.396octal -> 56.704.534


What is the hexadecimal conversion of ABCD into octal no?

125715


Can you write in hexadecimal and decimal?

Yes.


Why are MAC addresses written as six pair of Hexadecimal numbers?

Any data is stored internally in the computer as binary digits, but those are "bulky" - you need 4 binary digits for every hexadecimal digit, so hexadecimal is really a kind of shortcut to write out binary numbers.Decimal is another option, but conversion between binary and decimal is more cumbersome than with hexadecimal. Therefore, for the new IP addresses (IP version 6), they decided to write them down in hexadecimal, instead of the decimal that is used for IPv4.


Hexadecimal equivalent 1016?

1,016 converted from decimal to hexadecimal notation equals 3F816.


How do you convert a decimal to hexadecimal?

Whatchu think


Hexadecimal 888 equals what in decimal?

It is 2184.


Hexadecimal 3E6 equals - - - - - - - - - - decimal?

998


What is the answer of decimal 68 to hexadecimal?

68 = 0x44