Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

// Program: limits.cpp // Output the smallest and the largest value of type int. #include #include int main() { std::cout << "Minimum int value is " << std::numeric_limits::min() << ".\n" << "Maximum int value is " << std::numeric_limits::max() << ".\n"; return 0; }