编程学习网为您整理以下代码实例,主要实现:输入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;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!