#include using namespace std; int main() { int i=0; while (i != -1) { cout << "Enter an integer value between 0 and 255 (Type -1 to exit): "; cin >> i; if (i != -1) cout << "The corresponding character in ASCII scheme is : " << char(i) << endl; } return 0; }