C Program to Find ASCII Value of a Character

Program to Print ASCII Value




#include <stdio.h>
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", c, c);
    return 0;
}
For Technical Related Posts Please Visit http://codetherush.in 
OutPut


Enter a character: G
ASCII value of G = 71

Comments

Popular posts from this blog

C Program to Check Whether a Character is Vowel or Consonant

C Program to Find the Largest Number Among Three Numbers