C Program to Find ASCII Value of a Character

                   C Program to Find ASCII Value of a Character




Code:

#include <stdio.h>
int main()
{
    char c;
    printf("Enter a character: ");

    // Reads character input from the user
    scanf("%c", &c);  
    
    // %d displays the integer value of a character
    // %c displays the actual character
    printf("ASCII value of %c = %d", c, c);
    return 0;
}



Output

Enter a character: A

ASCII value of A = 65

Post a Comment

0 Comments