Description:
This program is used to print ASCII character accoring to the number entered by any user.For eg. if we Enter 65 then it will print 'A'
Program:
#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
printf("Enter ASCII number to view character: ");
scanf("%d",&a);
printf("ASCII character is %c",a);
getch();
}
This program is used to print ASCII character accoring to the number entered by any user.For eg. if we Enter 65 then it will print 'A'
Program:
#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
printf("Enter ASCII number to view character: ");
scanf("%d",&a);
printf("ASCII character is %c",a);
getch();
}