I am trying to submit the solution of Adding Least Common Multiples(July contest) in codechef.com.
But
After submission I have got an error
/sources/tested.cpp:1: error: expected unqualified-id before numeric constant
what is it mean?
I did not get any error when I compiled in eclipse(helios) using mingw32-g++
Can you copy paste your line of code which is causing this error?
This can happen for various reasons.
General guidelines to avoid such errors:
All uppercase names are often used for preprocessor macros, which do not respect namespace scopes. Therefore such names should generally be avoided for everything else.
Use GCC for local compilation.