This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

floating point operations in wince 6.0 on omap3530

Other Parts Discussed in Thread: OMAP3530

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...