C program to find ASCII value of a character

PROGRAM:

#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: G
ASCII value of G = 71