int x = INT_MAX
cout << x << endl; // 2147483647
cout << x + 1 << endl; // -2147483648
char c = 'c';
cout << c + 1; // 100 as ascii of c is 99 and adding 1 would result 100