hi we r using OMAP3530 under WINCE6.0 bsp....
the problem is that im not able to do floating point operations in my sample application.......
here is the test code and its output....
.
.
.
float a;
a= 14363612;
a= a/1000000; //a must be 14.363612
RETAILMSG(1,(TEXT(" 'a' is floating point number, which is equal to %f \r\n"),a));
.
.
.
here is the output.....
'a' is floating point number, which is equal to f
but the desired output must have been.....
'a' is floating point number, which is equal to 14.121236
wat mistake am i doing, i know it might be silly....?? do i need to enable any feature in wince catalog to start doing floating point operations?????
thnx in advance...