i wonder how to change a number to alphabet. like ASCII to alphabet.
Code:
int main() int i; char c; cout<<"write a while number"<<endl; cin>>i; c=i; cout<< c <<endl; like this looks my code but it does not function properly as it should be.
Comment