Problem
1. What safeguards does C++ provide to keep you from exceeding the limits of an integer type?
2. What is the distinction between 33L and 33?
3. Consider the two C++ statements that follow:
Char grade = 65;
Char grade = 'A';
Are they equivalent?