/* Program to Print ASCII Value (https://www.programiz.com/c-programming/examples/ASCII-value-character) */ #include 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\n", c, c); return 0; }