输入ASCII代码值,例如66,然后输出具有该ASCII代

#include stdio.hint main(void) {int ascii;printf(Enter an ASCII code: );scanf(%d, ascii);

编程学习网为您整理以下代码实例,主要实现:输入ASCII代码值,例如66,然后输出具有该ASCII代码的字符,希望可以帮到各位朋友。

#include <stdio.h>  

int main(voID) {  
    int ascii;

    printf("Enter an ASCII code: ");  
    scanf("%d", &ascii);  
    printf("%d is the ASCII code for %c.\n", ascii, ascii);  
    return 0;  
}

本文标题为:输入ASCII代码值,例如66,然后输出具有该ASCII代

基础教程推荐