I'm learning C language, I read about exp
function at: https://linux.cn/man3/exp.3.html
At RETURN VALUE
, There are 2 cases:
- If the result underflows, a range error occurs, and zero is returned.
- If the result overflows, a range error occurs, and the functions return +HUGE_VAL, +HUGE_VALF, or +HUGE_VALL, respectively.
Could anybody please help me to explain these cases?
I wanna know that what input's value I have to use for exp
function to occur these cases above.
Thanks for reading!