#include<stdio.h>
#include<conio.h>
int main()
{
int code;
char ch;
clrscr();
printf("
Enter the value of code:");
scanf("%d", &code);
ch=(char) code;
printf(" \n
The equivalent character is:%c",ch);
getch();
return 0;
}
No comments:
Post a Comment