20160721

ASCII Value Of A Character

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




OUTPUT

Enter a character: A
ASCII value of A = 65

Disqus Shortname

Recent Post Number

Related Post Number

Comments system