输入一个ASCII码,输出对应的字符。
65
A
1 #include<stdio.h> 2 int main() 3 { 4 int a; 5 scanf("%d",&a); 6 printf("%c ",a); 7 return 0; 8 }