How can I represent -infinity in C++, Java, etc.?
-infinity
In my exercise, I need to initialize a variable with -infinity to show that it\'s a very
If you want to represent the minimum value you can use, for example
for integers
int a = Integer.MIN_VALUE;
and floats, doubles, etc take each object wrapper min value