Sunday, September 4, 2016

Tags

PROGRAM TO CONVERT A DECIMAL NUMBER TO HEXADECIMAL NUMBER:

#include<stdio.h>
#include<conio.h>
main()
{int a,d,c;
printf("Enter Any Decimal Number");
scanf("%d",&a);
printf("Hexadecimal is %x",a);
getch();
}