What is the difference between the following expressions?
(short)(l_angle/l_msb * dividend)
and
short(l_angle/l_msb * divident)
I guess the first one is type casting to short type but what does the second expression do? If it is also typecasting, how is it different from the first?