Answers for "how to print hexadecimal value in c"

1

how to print hexadecimal value in c

%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)
Posted by: Guest on May-01-2021

Browse Popular Code Answers by Language