The question asks to do nothing by converting a decimal into itself. Perhaps the question was mistyped. Please restate the question.
Chat with our AI personalities
write a c++ program to convert binary number to decimal number by using while statement
FC(16) = value_of(F)*16 + value_of(C) = 15*16+12 = 252
Suppose your binary number is stored in a series of bits in the unsigned long type named bits.Then the fragment of a C program to convert this number to a decimal value would be ..double decimal_value = 0.0;for ( unsigned long i = 0; i < sizeof(unsigned long); ++i){decimal_value += pow(2,i) * ( bits & 1 );bits >> 1; // shift all the bits to the right one spot.} // end for iDoing this work is generally unnecessary as functions such as these are built in to most programing languages.Another method for this: double decimal_value= bits;
Assuming the number is represented by a decimal integer, initialise a counter to zero, then repeatedly divide the number by 10 and until the number is zero. After each division, examine the remainder. Each time the remainder is zero, increment the counter. If the number is represented by a decimal float, repeatedly multiply by 10 until the value is an integer, then perform the previous algorithm.
d= c/100; c= c-d*100; c=245 --> d=2, c=45