Math, asked by vishalpalwal17, 2 days ago

How to print a number in hexadecimal and octal in C?​

Answers

Answered by Malluponnu
1

Answer:

%d - to print value in integer format.

%o - to print value in octal format.

%x - to print value in hexadecimal format (letters will print in lowercase)

%X - to print value in hexadecimal format (letters will print in uppercase)

hop it helps you

follow

Similar questions