Danke!
Und der umgekehrte weg?
Delphi-Quellcode:
type
tda = array[0..7] of byte;
var
x: double;
i: integer;
begin
x := 1776;
for i:=0 to 7 do write(tda(x)[i]:4);
writeln;
end.
Ausgabe:
0 0 0 0 0 192 155 64, wenn Du's Hex brauchst, mußt Du halt noch inttohex zwischenschalten.