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

BoBo教KiKi字符常量或字符变量表示的字符在内存中以ASCII码形式存储。BoBo出了一个问题给KiKi,转换以下ASCII码为对应字符并输出他们。 73, 32, 99, 97, 110, 3

师谦
2023-12-01

#include<stdio.h>
int main(void)
{
int n[12]={73,32,99,97,110,32,100,111,32,105,116,33}; int x;
for(x=0;x<12;x++)
{
printf("%c",n[x]);
}
return 0;
}

 类似资料: