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