Write a program to Find ASCII Value of a Character

#include <stdio.h>

int main() {  

    char c;

    printf(“Enter a character: “);

    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: C

ASCII value of C = 67

Leave a Reply

Your email address will not be published. Required fields are marked *