//In the Name of ALLAH
//This program takes an ASCII code and returns the related character.
#include <stdio.h>
#include <conio.h>
void main()
 {
 int a;
 //*** The Main Body ***//
 clrscr();
 printf("This program will you the character related to the code that you enter.\nEnter a number between 0 and 256 please:\n");
 scanf("%d",&a);
 printf("The related character is: %c",a);
 getch();
 }