I declared a constant in a header file const double EARTH_RADIUS=6353; that is imported to various other headers and I got a linker error.
const double EARTH_RADIUS=6353;
L
Declare it in a source file and have external linkage to it( using extern keyword ) so as to use in all other source files.