HExadecimal Convertion

This is just a simple script to convert values 15 , 150 and 1500 into the hexadecimal form

#include<stdio.h>
#include<conio.h>

void main()
{

printf(“hex 15 = %x \nhex 150= %x \nhex 1500= %x”,15,150,1500);

getch();

}

Leave a Reply

Your email address will not be published. Required fields are marked *