Struct threshold
{
long value;
int exponent;
}t1,t2;
t1.value = 2;
t1.exponent =3;
t2.value = 3;
t2.exponent =4;
The first structure (t1) is 2 x 10^3
The second structure (t2) is 3 x 10^4
I want to get the result after division of the two structures.
The Reault should be a 32 bit value.
How can i achieve this?
Thanks a ton in advance.