#include #include int main() { int n ; n = INT_MAX ; printf("The largest integer on this system is: %d\n", n) ; n = n + 1 ; printf("INT_MAX + 1 = %d\n", n + 1 ) ; return 0 ; }