#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
    clrscr();
    cout<<"Enter any ASCII value : ";
    int a;
    cin>>a;
    char n;
    n=a;
    cout<<"The equivalent character is : "<<n;
    getch();
}



////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........