C 程序 查找字符的 ASCII 值

ASCII 值将英文字符表示为数字,每个字母分配一个 0 到 127 之间的数字。例如,大写Q的 ASCII 值为 81。

示例 1:显示用户输入的字符的 ASCII 值的程序

该程序获取用户输入的字符并显示其 ASCII 值。

#include <stdio.h>
int main()
{
    char ch;
    printf("Enter any character:");

    /* Reads the entered character and stores it
     * into the char variable ch
     */
    scanf("%c", &ch);

    /* Using the format specifiers we can get the ASCII code
     * of a character. When we use %d format specifier for a
     * char variable then it displays the ASCII value of a char
     */
    printf("ASCII value of character %c is: %d", ch, ch);
    return 0;
}

输出:

Enter any character:Q
ASCII value of character Q is: 81

查看相关的C 程序:

  1. C 程序:展示斐波那契序列
  2. C 程序:检查数字是偶数还是奇数
  3. C 程序:计算并打印 nPr 的值
  4. C 程序:将大写字符串转换为小写

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程