#include using namespace std; int main() { // char c = 'A'; char c = '2'; int i = 98; cout << "the character " << c << " has ASCII code " << (int)c << endl; cout << i <<" is the ASCII code of the charater " << (char)i << endl; return 0; }