Accept an integer value and print the corresponding character associated with the integer value.
#include <iostream> using namespace std; int main() { int a; cin >> a; char ch = a; cout << a << ":" << ch; return 0; }