#include <stdio.h> #include<math.h> int main() { char a; scanf("%c",&a); printf("The ASCII value of %c is : %d",a,a); return 0; }
No comments