1. Write a c program to convert decimal number to hexadecimal number.
3. Write a c program to convert octal number to decimal number.
4. Write a c program to convert octal number to hexadecimal number.
5. Write a c program to convert hexadecimal number to decimal number.
6. Write a c program to convert hexadecimal number to octal number.
8. Write a c program to convert binary number to hexadecimal number.
9. Write a c program to convert binary number to octal number.
11. Write a c program to convert hexadecimal number to binary number.
12. Write a c program to convert octal number to binary number.
6 comments:
this code seems to work only for small numbers.
i tried to input 32 but it gives the wrong output. how come?
I tried this code but it didn't work with large numbers.
#include
#include
int main()
{
int no,p=0,rem;
long int sum=0;
printf("Enter a number:");
scanf("%d",&no);
while(no!=0)
{
rem=no%2;
sum=sum+rem*pow(10,p);
no=no/2;
p++;
}
printf("The Binary Equivalent is:%ld\n",sum);
return 0;
}
change the int to long and this code works for large no
can any one explain me the above program
this helped me a lot
Post a Comment