#include int main() { char ch; printf("Enter an alphbet : "); scanf("%c",&ch); printf("%c's ASKII code is %d \n",ch,(int)ch); return 0; }