int main()
{
        int d = 65;
        int i = d;
        char ch = i;
        cout << ch << endl;
}
A
