Programming Code Center(PCC)
[C]

(PCC)::[C-Program-to-Find-ASCII-Value-of-a-Character]::[c]

File Name : ASCII_Value.c

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

ASCII_Value.jpg