输入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;  
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...