📜  在 c 中打印 ascii 值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:23.652000             🧑  作者: Mango

代码示例1
#include 
int main() {  
    char c;
    printf("Enter a character: ");
    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;
}