A program that read ASCII value & display equivalent character in C.

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

void main()
{
    char n;
    clrscr();
    printf("Enter any ASCII value : ");
    scanf("%d",&n);
    printf("The equivalent character is : ");
    printf("%c",n);
    getch();
}



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