02 Jan Write a C Program to ASCII value of a Character: Admin | C Examples, C Program to ASCII value of a Character | C | 0 C Program to ASCII value of a Character #include <stdio.h> int main() { char ch; printf("Enter the character"); scanf("%c",&ch); printf("ASCII value of %c=%d",ch,ch); return 0; } Output: Enter the character O ASCII value of O=79 Related posts: Write a C program ASCII values of all Characters Write a C Program to “Hello, World!” Write a C program to add two integers Write a c program to addition, subtraction, multiplication, division and Modules by using two integers Write a C program to check Leap year or Not Write a C program to display All ASCII alphabets Write a C Program to display Fibonacci series using recursion Write a C Program to Only ASCII values