Hi,
In math.h, there is a declaration:
#ifndef __assembler /* Protect from assembler */
_CRTIMP extern double _HUGE;
#endif /* __assembler */
#define HUGE_VAL _HUGE
but where is _HUGE defined?
I got an unresolved external symbol error when using
HUGE_VAL.
Can someone tell me how to solve the problem?
In math.h, there is a declaration:
#ifndef __assembler /* Protect from assembler */
_CRTIMP extern double _HUGE;
#endif /* __assembler */
#define HUGE_VAL _HUGE
but where is _HUGE defined?
I got an unresolved external symbol error when using
HUGE_VAL.
Can someone tell me how to solve the problem?