Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hallo, ich soll einen double wert byteweise ausgeben, hab absolut keinen plan wie ich das machen soll!?? hat jemand eine idee ?
so etwa:
... double x = 123.456; unsigned char *p = (unsigned char*)&x; int s; ... for (s=0; s<sizeof(double); s++) printf ("%02x ", *p++); ...