How to write a 32-bit unsigned integer divided by 65536.0 in C language?
Unsigned int a = 30
Double b;
b = a/65536.0;
In the calculation, the useful 65536.0 is of double type. The computer will first take out the data in A and convert it into double type, then divide it, and finally get the result of double type.