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