Introduction - If you have any usage issues, please Google them yourself
Deposit the result of the operation (floating point number) into an eeprom. We know that floating point Numbers are stored in the c language as ieee format
A floating-point number occupies four bytes, such as the number of floating point 34.526 (160,26,1066). to
Putting a floating point number into an eeprom is actually going to save these four Numbers. So how do you get a float in the program
What's the composition?
Floating point Numbers, when stored, are stored in contiguous bytes, which can be obtained by trying to find the storage location.
Can define a void pointer, the pointer points to the need to store floating-point number, and then forced into this pointer to char, so use of Pointers can get every byte of the floating-point value!