|
|
back to boardwhy compilation error? #include <math.h> long double g; int main() { long double x=log10l(g) return 0; //what is wrong with math.h? } You forgot ';' after x=log10l(g) :-) except that; why can't I use function log10l what compiler timus uses? |
|
|