当前位置: 首页 > 工具软件 > Bobo > 使用案例 >

BoBo教KiKi字符常量或字符变量表示的字符在内存中以ASCII码形式存储。BoBo出了一个问题给KiKi,输入一个字符,输出该字符相应的ASCII码。

呼延辰龙
2023-12-01

#include<stdio.h>
int main(void){
char s;
scanf("%c",&s);
printf("%d\n",s);
return 0;}

 类似资料: