1234567891011121314151617
#include <iostream> using namespace std; int main() { char theChar; cout << " Enter a Char:" << endl; cin >> theChar; theChar++; cout << "theChar " << theChar << endl; system("pause"); return 0; }