| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Tue Feb 28, 2006 2:06 am Post subject: float |
|
|
how do i set a floating point to the maximum float value in c++? |
|
| Back to top |
|
 |
Victor Bazarov Guest
|
Posted: Tue Feb 28, 2006 2:06 am Post subject: Re: float |
|
|
bob (AT) coolgroups (DOT) com wrote:
| Quote: | how do i set a floating point to the maximum float value in c++?
|
float value = std::numeric_limits<float>::max();
V
--
Please remove capital As from my address when replying by mail |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Feb 28, 2006 7:06 am Post subject: Re: float |
|
|
nice. thanks. |
|
| Back to top |
|
 |
|