This works in CLion:
#include <iostream>
int main()
{
int min = INT_MAX;
return 0;
}
But it doesn't on udacity where I'm learning C++:
Why is there a need to add #include <climits>
in some instances and not in others?
This works in CLion:
#include <iostream>
int main()
{
int min = INT_MAX;
return 0;
}
But it doesn't on udacity where I'm learning C++:
Why is there a need to add #include <climits>
in some instances and not in others?