M
mana111
Guest
hallo ich brauche, um das Low-Byte eines float-Variable extrahieren und speichern sie in einer char-Variablen Anregungen thanx
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hallo, Warum hast du gesagt b = ptr [0] wollte;. Anstatt b = * ptr; Thanks a lot
char GetLsb (float * f) {int a = 1; return ((char *) f) [(sizeof (float) -1 )*!(*( char *) & a)];} float f = 123.456; char c = GetLsb (& f);