Dates:
int i;
char c;
c = 65; // Assign the character which has ASCII code 65
cout << c; // This will print the character A
cout << "Type an integer: ";
cin >> i;
c = i;
cout << c; // This will print the character that has the ASCII
// code typed by the user.
The number 65 appeared 42 times in the input.NOTE: Each line of the output must look exactly as shown above. Otherwise, you'll lose points in Dora's tests.