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();
}
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();
}