kaepernickus
Freizeitschrauber(in)
Könnte mir jemand bei einem C Programm aushelfen?
Ich muss folgendes C-Programm schreiben, habe aber keinen Plan. Kann mir da jemand helfen?
Ich muss folgendes C-Programm schreiben, habe aber keinen Plan. Kann mir da jemand helfen?
Write a program that reads a floating point number from stdin to a double variable, and prints its IEEE 754 standard byte representation in hexadecimal. Use an unsigned char pointer to individually access all eight bytes of the double variable; the byte with the highest address should be printed at leftmost position.
Are you able to identify sign bit, biased exponent, and mantissa fraction?
Hint: The “%02X” format of printf prints a byte as two hexadecimal digits.