Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to get log(10) value... I'm using qLn function but it gives me 2.3025 which is the value of ln... But how do I get the log (Normal e base) value in Qt?
@ #include <math.h> log(10); @
ln is normal e base logarithm... if you are looking for log that is 10 base logarithm... :)
Thanks Raven... It works... :-)