Write a programe convert ASCII no into related character.
Input:- #include #include void main( ) { int n; clrscr( ); printf("Enter ASCII no:"); scanf("%d",&n); printf("ASCII no %d is for character %c",n,n); getch( ); } Output:- Enter ASCII no:97 ASCII no 97 is for character a