#include<stdio.h>
void main()
{
char a;
printf("enter a character:");
scanf("%c",&a);
printf("ASCII value of character %c is %d",a,a);
}
0 Comments