#include<stdio.h>
int main ()
{
char c;
printf("Enter the value of character : ");
scanf("%c", &c);
printf("ASCII value of %c = %d",c,c);
getch ();
}
0 Comments