C program to print ASCII value of a character on May 24, 2018 Get link Facebook X Pinterest Email Other Apps #include<stdio.h> #include<conio.h> void main() { char a; puts("Enter the character"); scanf("%c",&a); printf("ASCII Value of %c = %d",a,a); } Comments
Comments
Post a Comment