Write a C Program to Print integer value in Decimal, Octal, Hexadecimal using printf. Here’s simple Program to Print integer value in Decimal, Octal, Hexadecimal using printf in C Programming Language.
Below is the source code for C Program to Print integer value in Decimal, Octal, Hexadecimal using printf which is successfully compiled and run on Windows System to produce desired output as shown below :
SOURCE CODE : :
/* C Program to Print integer value in Decimal, Octal, Hexadecimal using printf */
#include <stdio.h>
int main()
{
int value=3412;
printf("Decimal value is: %d\n",value);
printf("\nOctal value is: %o\n",value);
printf("\nHexadecimal value is (Alphabet in small letters): %x\n",value);
printf("\nHexadecimal value is (Alphabet in capital letters): %X\n",value);
return 0;
}
OUTPUT : :
Decimal value is: 3412
Octal value is: 6524
Hexadecimal value is (Alphabet in small letters): d54
Hexadecimal value is (Alphabet in capital letters): D54
Above is the source code for C program to print ASCII value of entered character which is successfully compiled and run on Windows System.The Output of the program is shown above .
Below is the source code for C Program to Print integer value in Decimal, Octal, Hexadecimal using printf which is successfully compiled and run on Windows System to produce desired output as shown below :
SOURCE CODE : :
OUTPUT : :
Above is the source code for C program to print ASCII value of entered character which is successfully compiled and run on Windows System.The Output of the program is shown above .
need an explanation for this answer? contact us directly to get an explanation for this answer