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